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, MERCHANTABILITY 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 * from: @(#)clnt.h 1.31 88/02/08 SMI
30 * from: @(#)clnt.h 2.1 88/07/29 4.0 RPCSRC
31 * $FreeBSD: src/include/rpc/clnt.h,v 1.11.2.1 2001/06/28 21:44:09 iedowse Exp $
32 * $DragonFly: src/include/rpc/clnt.h,v 1.6 2005/11/13 12:27:04 swildner Exp $
36 * clnt.h - Client side remote procedure call interface.
38 * Copyright (C) 1984, Sun Microsystems, Inc.
43 #include <sys/cdefs.h>
47 * Rpc calls return an enum clnt_stat. This should be looked at more,
48 * since each implementation is required to live with this (implementation
49 * independent) list of errors.
52 RPC_SUCCESS
=0, /* call succeeded */
56 RPC_CANTENCODEARGS
=1, /* can't encode arguments */
57 RPC_CANTDECODERES
=2, /* can't decode results */
58 RPC_CANTSEND
=3, /* failure in sending call */
59 RPC_CANTRECV
=4, /* failure in receiving result */
60 RPC_TIMEDOUT
=5, /* call timed out */
64 RPC_VERSMISMATCH
=6, /* rpc versions not compatible */
65 RPC_AUTHERROR
=7, /* authentication error */
66 RPC_PROGUNAVAIL
=8, /* program not available */
67 RPC_PROGVERSMISMATCH
=9, /* program version mismatched */
68 RPC_PROCUNAVAIL
=10, /* procedure unavailable */
69 RPC_CANTDECODEARGS
=11, /* decode arguments error */
70 RPC_SYSTEMERROR
=12, /* generic "other problem" */
73 * callrpc & clnt_create errors
75 RPC_UNKNOWNHOST
=13, /* unknown host name */
76 RPC_UNKNOWNPROTO
=17, /* unkown protocol */
81 RPC_PMAPFAILURE
=14, /* the pmapper failed in its call */
82 RPC_PROGNOTREGISTERED
=15, /* remote program is not registered */
94 enum clnt_stat re_status
;
96 int RE_errno
; /* related system error */
97 enum auth_stat RE_why
; /* why the auth error occurred */
99 u_int32_t low
; /* lowest verion supported */
100 u_int32_t high
; /* highest verion supported */
102 struct { /* maybe meaningful if RPC_FAILED */
105 } RE_lb
; /* life boot & debugging only */
107 #define re_errno ru.RE_errno
108 #define re_why ru.RE_why
109 #define re_vers ru.RE_vers
110 #define re_lb ru.RE_lb
116 * Created by individual implementations, see e.g. rpc_udp.c.
117 * Client is responsible for initializing auth, see e.g. auth_none.c.
119 typedef struct __rpc_client
{
120 AUTH
*cl_auth
; /* authenticator */
122 /* call remote procedure */
123 enum clnt_stat (*cl_call
) (struct __rpc_client
*,
124 u_long
, xdrproc_t
, caddr_t
, xdrproc_t
,
125 caddr_t
, struct timeval
);
127 void (*cl_abort
) (struct __rpc_client
*);
128 /* get specific error code */
129 void (*cl_geterr
) (struct __rpc_client
*,
132 bool_t (*cl_freeres
) (struct __rpc_client
*,
134 /* destroy this structure */
135 void (*cl_destroy
) (struct __rpc_client
*);
136 /* the ioctl() of rpc */
137 bool_t (*cl_control
) (struct __rpc_client
*, u_int
,
140 caddr_t cl_private
; /* private stuff */
145 * client side rpc interface ops
147 * Parameter types are:
153 * CLNT_CALL(rh, proc, xargs, argsp, xres, resp, timeout)
160 * struct timeval timeout;
162 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \
163 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, (caddr_t)argsp, \
164 xres, (caddr_t)resp, secs))
165 #define clnt_call(rh, proc, xargs, argsp, xres, resp, secs) \
166 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, (caddr_t)argsp, \
167 xres, (caddr_t)resp, secs))
174 #define CLNT_ABORT(rh) ((*(rh)->cl_ops->cl_abort)(rh))
175 #define clnt_abort(rh) ((*(rh)->cl_ops->cl_abort)(rh))
182 #define CLNT_GETERR(rh,errp) ((*(rh)->cl_ops->cl_geterr)(rh, errp))
183 #define clnt_geterr(rh,errp) ((*(rh)->cl_ops->cl_geterr)(rh, errp))
188 * CLNT_FREERES(rh, xres, resp);
193 #define CLNT_FREERES(rh,xres,resp) ((*(rh)->cl_ops->cl_freeres)(rh,xres,resp))
194 #define clnt_freeres(rh,xres,resp) ((*(rh)->cl_ops->cl_freeres)(rh,xres,resp))
198 * CLNT_CONTROL(cl, request, info)
203 #define CLNT_CONTROL(cl,rq,in) ((*(cl)->cl_ops->cl_control)(cl,rq,in))
204 #define clnt_control(cl,rq,in) ((*(cl)->cl_ops->cl_control)(cl,rq,in))
207 * control operations that apply to udp, tcp and unix transports
209 * Note: options marked XXX are no-ops in this implementation of RPC.
210 * The are present in TI-RPC but can't be implemented here since they
211 * depend on the presence of STREAMS/TLI, which we don't have.
214 #define CLSET_TIMEOUT 1 /* set timeout (timeval) */
215 #define CLGET_TIMEOUT 2 /* get timeout (timeval) */
216 #define CLGET_SERVER_ADDR 3 /* get server's address (sockaddr) */
217 #define CLGET_FD 6 /* get connections file descriptor */
218 #define CLGET_SVC_ADDR 7 /* get server's address (netbuf) XXX */
219 #define CLSET_FD_CLOSE 8 /* close fd while clnt_destroy */
220 #define CLSET_FD_NCLOSE 9 /* Do not close fd while clnt_destroy */
221 #define CLGET_XID 10 /* Get xid */
222 #define CLSET_XID 11 /* Set xid */
223 #define CLGET_VERS 12 /* Get version number */
224 #define CLSET_VERS 13 /* Set version number */
225 #define CLGET_PROG 14 /* Get program number */
226 #define CLSET_PROG 15 /* Set program number */
227 #define CLSET_SVC_ADDR 16 /* get server's address (netbuf) XXX */
228 #define CLSET_PUSH_TIMOD 17 /* push timod if not already present XXX */
229 #define CLSET_POP_TIMOD 18 /* pop timod XXX */
232 * udp only control operations
234 #define CLSET_RETRY_TIMEOUT 4 /* set retry timeout (timeval) */
235 #define CLGET_RETRY_TIMEOUT 5 /* get retry timeout (timeval) */
236 #define CLSET_CONNECT 20 /* Use connect() for UDP. (int) */
239 * Operations which GSSAPI needs. (Bletch.)
241 #define CLGET_LOCAL_ADDR 19 /* get local addr (sockaddr) */
249 #define CLNT_DESTROY(rh) ((*(rh)->cl_ops->cl_destroy)(rh))
250 #define clnt_destroy(rh) ((*(rh)->cl_ops->cl_destroy)(rh))
254 * RPCTEST is a test program which is accessible on every rpc
255 * transport/port. It is used for testing, performance evaluation,
256 * and network administration.
259 #define RPCTEST_PROGRAM ((u_long)1)
260 #define RPCTEST_VERSION ((u_long)1)
261 #define RPCTEST_NULL_PROC ((u_long)2)
262 #define RPCTEST_NULL_BATCH_PROC ((u_long)3)
265 * By convention, procedure 0 takes null arguments and returns them
268 #define NULLPROC ((u_long)0)
271 * Below are the client handle creation routines for the various
272 * implementations of client side rpc. They can return NULL if a
273 * creation failure occurs.
277 * Memory based rpc (for speed check and testing)
279 * clntraw_create(prog, vers)
284 extern CLIENT
*clntraw_create (u_long
, u_long
);
289 * Generic client creation routine. Supported protocols are "udp", "tcp"
292 * clnt_create(host, prog, vers, prot);
293 * const char *host; -- hostname
294 * u_long prog; -- program number
295 * u_long vers; -- version number
296 * const char *prot; -- protocol
299 CLIENT
* clnt_create(const char *, u_long
, u_long
, const char *);
306 * clnttcp_create(raddr, prog, vers, sockp, sendsz, recvsz)
307 * struct sockaddr_in *raddr;
315 extern CLIENT
*clnttcp_create (struct sockaddr_in
*,
327 * clntudp_create(raddr, program, version, wait, sockp)
328 * struct sockaddr_in *raddr;
331 * struct timeval wait;
334 * Same as above, but you specify max packet sizes.
336 * clntudp_bufcreate(raddr, program, version, wait, sockp, sendsz, recvsz)
337 * struct sockaddr_in *raddr;
340 * struct timeval wait;
346 extern CLIENT
*clntudp_create (struct sockaddr_in
*,
351 extern CLIENT
*clntudp_bufcreate (struct sockaddr_in
*,
364 * clntunix_create(raddr, prog, vers, sockp, sendsz, recvsz)
365 * struct sockaddr_un *raddr;
373 extern CLIENT
*clntunix_create (struct sockaddr_un
*,
383 * Print why creation failed
386 extern void clnt_pcreateerror(const char *); /* stderr */
387 extern char *clnt_spcreateerror(const char *); /* string */
391 * Like clnt_perror(), but is more verbose in its output
394 extern void clnt_perrno (enum clnt_stat
); /* stderr */
395 extern char *clnt_sperrno (enum clnt_stat
); /* string */
399 * Print an English error message, given the client error code
402 extern void clnt_perror(CLIENT
*, const char *); /* stderr */
403 extern char *clnt_sperror(CLIENT
*, const char *); /* string */
408 * If a creation fails, the following allows the user to figure out why.
410 struct rpc_createerr
{
411 enum clnt_stat cf_stat
;
412 struct rpc_err cf_error
; /* useful when cf_stat == RPC_PMAPFAILURE */
415 extern struct rpc_createerr rpc_createerr
;
418 #define UDPMSGSIZE 8800 /* rpc imposed limit on udp msg size */
419 #define RPCSMALLMSGSIZE 400 /* a more reasonable packet size */
421 #endif /* !_RPC_CLNT_H */