1 /* @(#)clnt.h 2.1 88/07/29 4.0 RPCSRC; from 1.31 88/02/08 SMI*/
3 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
4 * unrestricted use provided that this legend is included on all tape
5 * media and as a part of the software program in whole or part. Users
6 * may copy or modify Sun RPC without charge, but are not authorized
7 * to license or distribute it to anyone else except as part of a product or
8 * program developed by the user.
10 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
11 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
12 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
14 * Sun RPC is provided with no support and without any obligation on the
15 * part of Sun Microsystems, Inc. to assist in its use, correction,
16 * modification or enhancement.
18 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
19 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
20 * OR ANY PART THEREOF.
22 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
23 * or profits or other special, indirect and consequential damages, even if
24 * Sun has been advised of the possibility of such damages.
26 * Sun Microsystems, Inc.
28 * Mountain View, California 94043
32 * clnt.h - Client side remote procedure call interface.
34 * Copyright (C) 1984, Sun Microsystems, Inc.
41 * Rpc calls return an enum clnt_stat. This should be looked at more,
42 * since each implementation is required to live with this (implementation
43 * independent) list of errors.
46 RPC_SUCCESS
=0, /* call succeeded */
50 RPC_CANTENCODEARGS
=1, /* can't encode arguments */
51 RPC_CANTDECODERES
=2, /* can't decode results */
52 RPC_CANTSEND
=3, /* failure in sending call */
53 RPC_CANTRECV
=4, /* failure in receiving result */
54 RPC_TIMEDOUT
=5, /* call timed out */
58 RPC_VERSMISMATCH
=6, /* rpc versions not compatible */
59 RPC_AUTHERROR
=7, /* authentication error */
60 RPC_PROGUNAVAIL
=8, /* program not available */
61 RPC_PROGVERSMISMATCH
=9, /* program version mismatched */
62 RPC_PROCUNAVAIL
=10, /* procedure unavailable */
63 RPC_CANTDECODEARGS
=11, /* decode arguments error */
64 RPC_SYSTEMERROR
=12, /* generic "other problem" */
67 * callrpc & clnt_create errors
69 RPC_UNKNOWNHOST
=13, /* unknown host name */
70 RPC_UNKNOWNPROTO
=17, /* unkown protocol */
75 RPC_PMAPFAILURE
=14, /* the pmapper failed in its call */
76 RPC_PROGNOTREGISTERED
=15, /* remote program is not registered */
88 enum clnt_stat re_status
;
90 int RE_errno
; /* realated system error */
91 enum auth_stat RE_why
; /* why the auth error occurred */
93 u_long low
; /* lowest verion supported */
94 u_long high
; /* highest verion supported */
96 struct { /* maybe meaningful if RPC_FAILED */
99 } RE_lb
; /* life boot & debugging only */
101 #define re_errno ru.RE_errno
102 #define re_why ru.RE_why
103 #define re_vers ru.RE_vers
104 #define re_lb ru.RE_lb
110 * Created by individual implementations, see e.g. rpc_udp.c.
111 * Client is responsible for initializing auth, see e.g. auth_none.c.
114 AUTH
*cl_auth
; /* authenticator */
116 enum clnt_stat (*cl_call
)(); /* call remote procedure */
117 void (*cl_abort
)(); /* abort a call */
118 void (*cl_geterr
)(); /* get specific error code */
119 bool_t (*cl_freeres
)(); /* frees results */
120 void (*cl_destroy
)();/* destroy this structure */
121 bool_t (*cl_control
)();/* the ioctl() of rpc */
123 caddr_t cl_private
; /* private stuff */
128 * client side rpc interface ops
130 * Parameter types are:
136 * CLNT_CALL(rh, proc, xargs, argsp, xres, resp, timeout)
143 * struct timeval timeout;
145 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \
146 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
147 #define clnt_call(rh, proc, xargs, argsp, xres, resp, secs) \
148 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
155 #define CLNT_ABORT(rh) ((*(rh)->cl_ops->cl_abort)(rh))
156 #define clnt_abort(rh) ((*(rh)->cl_ops->cl_abort)(rh))
163 #define CLNT_GETERR(rh,errp) ((*(rh)->cl_ops->cl_geterr)(rh, errp))
164 #define clnt_geterr(rh,errp) ((*(rh)->cl_ops->cl_geterr)(rh, errp))
169 * CLNT_FREERES(rh, xres, resp);
174 #define CLNT_FREERES(rh,xres,resp) ((*(rh)->cl_ops->cl_freeres)(rh,xres,resp))
175 #define clnt_freeres(rh,xres,resp) ((*(rh)->cl_ops->cl_freeres)(rh,xres,resp))
179 * CLNT_CONTROL(cl, request, info)
184 #define CLNT_CONTROL(cl,rq,in) ((*(cl)->cl_ops->cl_control)(cl,rq,in))
185 #define clnt_control(cl,rq,in) ((*(cl)->cl_ops->cl_control)(cl,rq,in))
188 * control operations that apply to both udp and tcp transports
190 #define CLSET_TIMEOUT 1 /* set timeout (timeval) */
191 #define CLGET_TIMEOUT 2 /* get timeout (timeval) */
192 #define CLGET_SERVER_ADDR 3 /* get server's address (sockaddr) */
194 * udp only control operations
196 #define CLSET_RETRY_TIMEOUT 4 /* set retry timeout (timeval) */
197 #define CLGET_RETRY_TIMEOUT 5 /* get retry timeout (timeval) */
204 #define CLNT_DESTROY(rh) ((*(rh)->cl_ops->cl_destroy)(rh))
205 #define clnt_destroy(rh) ((*(rh)->cl_ops->cl_destroy)(rh))
209 * RPCTEST is a test program which is accessable on every rpc
210 * transport/port. It is used for testing, performance evaluation,
211 * and network administration.
214 #define RPCTEST_PROGRAM ((u_long)1)
215 #define RPCTEST_VERSION ((u_long)1)
216 #define RPCTEST_NULL_PROC ((u_long)2)
217 #define RPCTEST_NULL_BATCH_PROC ((u_long)3)
220 * By convention, procedure 0 takes null arguments and returns them
223 #define NULLPROC ((u_long)0)
226 * Below are the client handle creation routines for the various
227 * implementations of client side rpc. They can return NULL if a
228 * creation failure occurs.
232 * Memory based rpc (for speed check and testing)
234 * clntraw_create(prog, vers)
238 extern CLIENT
*clntraw_create();
242 * Generic client creation routine. Supported protocols are "udp" and "tcp"
245 clnt_create(/*host, prog, vers, prot*/); /*
246 char *host; -- hostname
247 u_long prog; -- program number
248 u_long vers; -- version number
249 char *prot; -- protocol
258 * clnttcp_create(raddr, prog, vers, sockp, sendsz, recvsz)
259 * struct sockaddr_in *raddr;
262 * register int *sockp;
266 extern CLIENT
*clnttcp_create();
271 * clntudp_create(raddr, program, version, wait, sockp)
272 * struct sockaddr_in *raddr;
275 * struct timeval wait;
278 * Same as above, but you specify max packet sizes.
280 * clntudp_bufcreate(raddr, program, version, wait, sockp, sendsz, recvsz)
281 * struct sockaddr_in *raddr;
284 * struct timeval wait;
289 extern CLIENT
*clntudp_create();
290 extern CLIENT
*clntudp_bufcreate();
293 * Print why creation failed
295 void clnt_pcreateerror(/* char *msg */); /* stderr */
296 char *clnt_spcreateerror(/* char *msg */); /* string */
299 * Like clnt_perror(), but is more verbose in its output
301 void clnt_perrno(/* enum clnt_stat num */); /* stderr */
304 * Print an English error message, given the client error code
306 void clnt_perror(/* CLIENT *clnt, char *msg */); /* stderr */
307 char *clnt_sperror(/* CLIENT *clnt, char *msg */); /* string */
310 * If a creation fails, the following allows the user to figure out why.
312 struct rpc_createerr
{
313 enum clnt_stat cf_stat
;
314 struct rpc_err cf_error
; /* useful when cf_stat == RPC_PMAPFAILURE */
317 extern struct rpc_createerr rpc_createerr
;
322 * Copy error message to buffer.
324 char *clnt_sperrno(/* enum clnt_stat num */); /* string */
328 #define UDPMSGSIZE 8800 /* rpc imposed limit on udp msg size */
329 #define RPCSMALLMSGSIZE 400 /* a more reasonable packet size */