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
52 * from: @(#)clnt.h 1.31 88/02/08 SMI
53 * from: @(#)clnt.h 2.1 88/07/29 4.0 RPCSRC
54 * $Id: clnt.h,v 1.4 2004/10/28 21:58:22 emoy Exp $
58 * clnt.h - Client side remote procedure call interface.
60 * Copyright (C) 1984, Sun Microsystems, Inc.
65 #include <sys/cdefs.h>
68 * Rpc calls return an enum clnt_stat. This should be looked at more,
69 * since each implementation is required to live with this (implementation
70 * independent) list of errors.
73 /* Avoid collision with mach definition */
74 #if defined(RPC_SUCCESS)
79 RPC_SUCCESS
=0, /* call succeeded */
83 RPC_CANTENCODEARGS
=1, /* can't encode arguments */
84 RPC_CANTDECODERES
=2, /* can't decode results */
85 RPC_CANTSEND
=3, /* failure in sending call */
86 RPC_CANTRECV
=4, /* failure in receiving result */
87 RPC_TIMEDOUT
=5, /* call timed out */
91 RPC_VERSMISMATCH
=6, /* rpc versions not compatible */
92 RPC_AUTHERROR
=7, /* authentication error */
93 RPC_PROGUNAVAIL
=8, /* program not available */
94 RPC_PROGVERSMISMATCH
=9, /* program version mismatched */
95 RPC_PROCUNAVAIL
=10, /* procedure unavailable */
96 RPC_CANTDECODEARGS
=11, /* decode arguments error */
97 RPC_SYSTEMERROR
=12, /* generic "other problem" */
100 * callrpc & clnt_create errors
102 RPC_UNKNOWNHOST
=13, /* unknown host name */
103 RPC_UNKNOWNPROTO
=17, /* unkown protocol */
108 RPC_PMAPFAILURE
=14, /* the pmapper failed in its call */
109 RPC_PROGNOTREGISTERED
=15, /* remote program is not registered */
121 enum clnt_stat re_status
;
123 int RE_errno
; /* realated system error */
124 enum auth_stat RE_why
; /* why the auth error occurred */
127 unsigned int low
; /* lowest verion supported */
128 unsigned int high
; /* highest verion supported */
130 unsigned long low
; /* lowest verion supported */
131 unsigned long high
; /* highest verion supported */
134 struct { /* maybe meaningful if RPC_FAILED */
142 } RE_lb
; /* life boot & debugging only */
144 #define re_errno ru.RE_errno
145 #define re_why ru.RE_why
146 #define re_vers ru.RE_vers
147 #define re_lb ru.RE_lb
153 * Created by individual implementations, see e.g. rpc_udp.c.
154 * Client is responsible for initializing auth, see e.g. auth_none.c.
156 typedef struct CLIENT CLIENT
;
159 AUTH
*cl_auth
; /* authenticator */
162 enum clnt_stat (*cl_call
)(CLIENT
*, unsigned int, xdrproc_t
, void *, xdrproc_t
, void *, struct timeval
); /* call remote procedure */
164 enum clnt_stat (*cl_call
)(CLIENT
*, unsigned long, xdrproc_t
, void *, xdrproc_t
, void *, struct timeval
); /* call remote procedure */
166 void (*cl_abort
)(void); /* abort a call */
167 void (*cl_geterr
)(CLIENT
*, struct rpc_err
*); /* get specific error code */
168 bool_t (*cl_freeres
)(CLIENT
*, xdrproc_t
, void *); /* frees results */
169 void (*cl_destroy
)(CLIENT
*); /* destroy this structure */
170 bool_t (*cl_control
)(CLIENT
*, int, char *); /* the ioctl() of rpc */
172 caddr_t cl_private
; /* private stuff */
176 * client side rpc interface ops
178 * Parameter types are:
184 * CLNT_CALL(rh, proc, xargs, argsp, xres, resp, timeout)
191 * struct timeval timeout;
193 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \
194 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
195 #define clnt_call(rh, proc, xargs, argsp, xres, resp, secs) \
196 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
203 #define CLNT_ABORT(rh) ((*(rh)->cl_ops->cl_abort)(rh))
204 #define clnt_abort(rh) ((*(rh)->cl_ops->cl_abort)(rh))
211 #define CLNT_GETERR(rh,errp) ((*(rh)->cl_ops->cl_geterr)(rh, errp))
212 #define clnt_geterr(rh,errp) ((*(rh)->cl_ops->cl_geterr)(rh, errp))
217 * CLNT_FREERES(rh, xres, resp);
222 #define CLNT_FREERES(rh,xres,resp) ((*(rh)->cl_ops->cl_freeres)(rh,xres,resp))
223 #define clnt_freeres(rh,xres,resp) ((*(rh)->cl_ops->cl_freeres)(rh,xres,resp))
227 * CLNT_CONTROL(cl, request, info)
229 * unsigned int request;
232 #define CLNT_CONTROL(cl,rq,in) ((*(cl)->cl_ops->cl_control)(cl,rq,in))
233 #define clnt_control(cl,rq,in) ((*(cl)->cl_ops->cl_control)(cl,rq,in))
236 * control operations that apply to both udp and tcp transports
238 #define CLSET_TIMEOUT 1 /* set timeout (timeval) */
239 #define CLGET_TIMEOUT 2 /* get timeout (timeval) */
240 #define CLGET_SERVER_ADDR 3 /* get server's address (sockaddr) */
242 * udp only control operations
244 #define CLSET_RETRY_TIMEOUT 4 /* set retry timeout (timeval) */
245 #define CLGET_RETRY_TIMEOUT 5 /* get retry timeout (timeval) */
252 #define CLNT_DESTROY(rh) ((*(rh)->cl_ops->cl_destroy)(rh))
253 #define clnt_destroy(rh) ((*(rh)->cl_ops->cl_destroy)(rh))
257 * RPCTEST is a test program which is accessable on every rpc
258 * transport/port. It is used for testing, performance evaluation,
259 * and network administration.
263 #define RPCTEST_PROGRAM ((unsigned int)1)
264 #define RPCTEST_VERSION ((unsigned int)1)
265 #define RPCTEST_NULL_PROC ((unsigned int)2)
266 #define RPCTEST_NULL_BATCH_PROC ((unsigned int)3)
268 #define RPCTEST_PROGRAM ((unsigned long)1)
269 #define RPCTEST_VERSION ((unsigned long)1)
270 #define RPCTEST_NULL_PROC ((unsigned long)2)
271 #define RPCTEST_NULL_BATCH_PROC ((unsigned long)3)
275 * By convention, procedure 0 takes null arguments and returns them
279 #define NULLPROC ((unsigned int)0)
281 #define NULLPROC ((unsigned long)0)
285 * Below are the client handle creation routines for the various
286 * implementations of client side rpc. They can return NULL if a
287 * creation failure occurs.
291 * Memory based rpc (for speed check and testing)
293 * clntraw_create(prog, vers)
299 extern CLIENT
*clntraw_create
__P((unsigned int, unsigned int));
301 extern CLIENT
*clntraw_create
__P((unsigned long, unsigned long));
307 * Generic client creation routine. Supported protocols are "udp" and "tcp"
309 * clnt_create(host, prog, vers, prot);
310 * char *host; -- hostname
311 * u_long prog; -- program number
312 * u_long vers; -- version number
313 * char *prot; -- protocol
317 extern CLIENT
*clnt_create
__P((char *, unsigned int, unsigned int, char *));
319 extern CLIENT
*clnt_create
__P((char *, unsigned long, unsigned long, char *));
327 * clnttcp_create(raddr, prog, vers, sockp, sendsz, recvsz)
328 * struct sockaddr_in *raddr;
331 * register int *sockp;
332 * unsigned int sendsz;
333 * unsigned int recvsz;
337 extern CLIENT
*clnttcp_create
__P((struct sockaddr_in
*,
344 extern CLIENT
*clnttcp_create
__P((struct sockaddr_in
*,
357 * clntudp_create(raddr, program, version, wait, sockp)
358 * struct sockaddr_in *raddr;
361 * struct timeval wait;
364 * Same as above, but you specify max packet sizes.
366 * clntudp_bufcreate(raddr, program, version, wait, sockp, sendsz, recvsz)
367 * struct sockaddr_in *raddr;
370 * struct timeval wait;
372 * unsigned int sendsz;
373 * unsigned int recvsz;
377 extern CLIENT
*clntudp_create
__P((struct sockaddr_in
*,
382 extern CLIENT
*clntudp_bufcreate
__P((struct sockaddr_in
*,
390 extern CLIENT
*clntudp_create
__P((struct sockaddr_in
*,
395 extern CLIENT
*clntudp_bufcreate
__P((struct sockaddr_in
*,
407 * Print why creation failed
410 extern void clnt_pcreateerror
__P((char *)); /* stderr */
411 extern char *clnt_spcreateerror
__P((char *)); /* string */
415 * Like clnt_perror(), but is more verbose in its output
418 extern void clnt_perrno
__P((enum clnt_stat
)); /* stderr */
419 extern char *clnt_sperrno
__P((enum clnt_stat
)); /* string */
423 * Print an English error message, given the client error code
426 extern void clnt_perror
__P((CLIENT
*, char *)); /* stderr */
427 extern char *clnt_sperror
__P((CLIENT
*, char *)); /* string */
432 * If a creation fails, the following allows the user to figure out why.
434 struct rpc_createerr
{
435 enum clnt_stat cf_stat
;
436 struct rpc_err cf_error
; /* useful when cf_stat == RPC_PMAPFAILURE */
439 extern struct rpc_createerr rpc_createerr
;
442 #define UDPMSGSIZE 8800 /* rpc imposed limit on udp msg size */
443 #define RPCSMALLMSGSIZE 400 /* a more reasonable packet size */
445 #endif /* !_RPC_CLNT_H */