1/* 2 * svc.h, Server-side remote procedure call interface. 3 * 4 * Copyright (C) 1984, Sun Microsystems, Inc. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions are 8 * met: 9 * 10 * * Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * * Redistributions in binary form must reproduce the above 13 * copyright notice, this list of conditions and the following 14 * disclaimer in the documentation and/or other materials 15 * 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 21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 23 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 24 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 25 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 27 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 29 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 30 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32 */ 33 34#ifndef _RPC_SVC_H 35#define _RPC_SVC_H 1 36 37#include <features.h> 38#include <rpc/rpc_msg.h> 39 40__BEGIN_DECLS 41 42/* 43 * This interface must manage two items concerning remote procedure calling: 44 * 45 * 1) An arbitrary number of transport connections upon which rpc requests 46 * are received. The two most notable transports are TCP and UDP; they are 47 * created and registered by routines in svc_tcp.c and svc_udp.c, respectively; 48 * they in turn call xprt_register and xprt_unregister. 49 * 50 * 2) An arbitrary number of locally registered services. Services are 51 * described by the following four data: program number, version number, 52 * "service dispatch" function, a transport handle, and a boolean that 53 * indicates whether or not the exported program should be registered with a 54 * local binder service; if true the program's number and version and the 55 * port number from the transport handle are registered with the binder. 56 * These data are registered with the rpc svc system via svc_register. 57 * 58 * A service's dispatch function is called whenever an rpc request comes in 59 * on a transport. The request's program and version numbers must match 60 * those of the registered service. The dispatch function is passed two 61 * parameters, struct svc_req * and SVCXPRT *, defined below. 62 */ 63 64enum xprt_stat { 65 XPRT_DIED, 66 XPRT_MOREREQS, 67 XPRT_IDLE 68}; 69 70/* 71 * Server side transport handle 72 */ 73typedef struct SVCXPRT SVCXPRT; 74struct SVCXPRT { 75 int xp_sock; 76 u_short xp_port; /* associated port number */ 77 const struct xp_ops { 78 bool_t (*xp_recv) (SVCXPRT *__xprt, struct rpc_msg *__msg); 79 /* receive incoming requests */ 80 enum xprt_stat (*xp_stat) (SVCXPRT *__xprt); 81 /* get transport status */ 82 bool_t (*xp_getargs) (SVCXPRT *__xprt, xdrproc_t __xdr_args, 83 caddr_t __args_ptr); /* get arguments */ 84 bool_t (*xp_reply) (SVCXPRT *__xprt, struct rpc_msg *__msg); 85 /* send reply */ 86 bool_t (*xp_freeargs) (SVCXPRT *__xprt, xdrproc_t __xdr_args, 87 caddr_t __args_ptr); 88 /* free mem allocated for args */ 89 void (*xp_destroy) (SVCXPRT *__xprt); 90 /* destroy this struct */ 91 } *xp_ops; 92 int xp_addrlen; /* length of remote address */ 93 struct sockaddr_in xp_raddr; /* remote address */ 94 struct opaque_auth xp_verf; /* raw response verifier */ 95 caddr_t xp_p1; /* private */ 96 caddr_t xp_p2; /* private */ 97 char xp_pad [256]; /* padding, internal use */ 98}; 99 100/* 101 * Approved way of getting address of caller 102 */ 103#define svc_getcaller(x) (&(x)->xp_raddr) 104 105/* 106 * Operations defined on an SVCXPRT handle 107 * 108 * SVCXPRT *xprt; 109 * struct rpc_msg *msg; 110 * xdrproc_t xargs; 111 * caddr_t argsp; 112 */ 113#define SVC_RECV(xprt, msg) \ 114 (*(xprt)->xp_ops->xp_recv)((xprt), (msg)) 115#define svc_recv(xprt, msg) \ 116 (*(xprt)->xp_ops->xp_recv)((xprt), (msg)) 117 118#define SVC_STAT(xprt) \ 119 (*(xprt)->xp_ops->xp_stat)(xprt) 120#define svc_stat(xprt) \ 121 (*(xprt)->xp_ops->xp_stat)(xprt) 122 123#define SVC_GETARGS(xprt, xargs, argsp) \ 124 (*(xprt)->xp_ops->xp_getargs)((xprt), (xargs), (argsp)) 125#define svc_getargs(xprt, xargs, argsp) \ 126 (*(xprt)->xp_ops->xp_getargs)((xprt), (xargs), (argsp)) 127 128#define SVC_REPLY(xprt, msg) \ 129 (*(xprt)->xp_ops->xp_reply) ((xprt), (msg)) 130#define svc_reply(xprt, msg) \ 131 (*(xprt)->xp_ops->xp_reply) ((xprt), (msg)) 132 133#define SVC_FREEARGS(xprt, xargs, argsp) \ 134 (*(xprt)->xp_ops->xp_freeargs)((xprt), (xargs), (argsp)) 135#define svc_freeargs(xprt, xargs, argsp) \ 136 (*(xprt)->xp_ops->xp_freeargs)((xprt), (xargs), (argsp)) 137 138#define SVC_DESTROY(xprt) \ 139 (*(xprt)->xp_ops->xp_destroy)(xprt) 140#define svc_destroy(xprt) \ 141 (*(xprt)->xp_ops->xp_destroy)(xprt) 142 143 144/* 145 * Service request 146 */ 147struct svc_req { 148 rpcprog_t rq_prog; /* service program number */ 149 rpcvers_t rq_vers; /* service protocol version */ 150 rpcproc_t rq_proc; /* the desired procedure */ 151 struct opaque_auth rq_cred; /* raw creds from the wire */ 152 caddr_t rq_clntcred; /* read only cooked cred */ 153 SVCXPRT *rq_xprt; /* associated transport */ 154}; 155 156#ifndef __DISPATCH_FN_T 157#define __DISPATCH_FN_T 158typedef void (*__dispatch_fn_t) (struct svc_req*, SVCXPRT*); 159#endif 160 161/* 162 * Service registration 163 * 164 * svc_register(xprt, prog, vers, dispatch, protocol) 165 * SVCXPRT *xprt; 166 * rpcprog_t prog; 167 * rpcvers_t vers; 168 * void (*dispatch)(struct svc_req*, SVCXPRT*); 169 * rpcprot_t protocol; like TCP or UDP, zero means do not register 170 */ 171extern bool_t svc_register (SVCXPRT *__xprt, rpcprog_t __prog, 172 rpcvers_t __vers, __dispatch_fn_t __dispatch, 173 rpcprot_t __protocol) __THROW; 174 175/* 176 * Service un-registration 177 * 178 * svc_unregister(prog, vers) 179 * rpcprog_t prog; 180 * rpcvers_t vers; 181 */ 182extern void svc_unregister (rpcprog_t __prog, rpcvers_t __vers) __THROW; 183 184/* 185 * Transport registration. 186 * 187 * xprt_register(xprt) 188 * SVCXPRT *xprt; 189 */ 190extern void xprt_register (SVCXPRT *__xprt) __THROW; 191 192/* 193 * Transport un-register 194 * 195 * xprt_unregister(xprt) 196 * SVCXPRT *xprt; 197 */ 198extern void xprt_unregister (SVCXPRT *__xprt) __THROW; 199 200 201/* 202 * When the service routine is called, it must first check to see if it 203 * knows about the procedure; if not, it should call svcerr_noproc 204 * and return. If so, it should deserialize its arguments via 205 * SVC_GETARGS (defined above). If the deserialization does not work, 206 * svcerr_decode should be called followed by a return. Successful 207 * decoding of the arguments should be followed the execution of the 208 * procedure's code and a call to svc_sendreply. 209 * 210 * Also, if the service refuses to execute the procedure due to too- 211 * weak authentication parameters, svcerr_weakauth should be called. 212 * Note: do not confuse access-control failure with weak authentication! 213 * 214 * NB: In pure implementations of rpc, the caller always waits for a reply 215 * msg. This message is sent when svc_sendreply is called. 216 * Therefore pure service implementations should always call 217 * svc_sendreply even if the function logically returns void; use 218 * xdr.h - xdr_void for the xdr routine. HOWEVER, tcp based rpc allows 219 * for the abuse of pure rpc via batched calling or pipelining. In the 220 * case of a batched call, svc_sendreply should NOT be called since 221 * this would send a return message, which is what batching tries to avoid. 222 * It is the service/protocol writer's responsibility to know which calls are 223 * batched and which are not. Warning: responding to batch calls may 224 * deadlock the caller and server processes! 225 */ 226 227extern bool_t svc_sendreply (SVCXPRT *__xprt, xdrproc_t __xdr_results, 228 caddr_t __xdr_location) __THROW; 229 230extern void svcerr_decode (SVCXPRT *__xprt) __THROW; 231 232extern void svcerr_weakauth (SVCXPRT *__xprt) __THROW; 233 234extern void svcerr_noproc (SVCXPRT *__xprt) __THROW; 235 236extern void svcerr_progvers (SVCXPRT *__xprt, rpcvers_t __low_vers, 237 rpcvers_t __high_vers) __THROW; 238 239extern void svcerr_auth (SVCXPRT *__xprt, enum auth_stat __why) __THROW; 240 241extern void svcerr_noprog (SVCXPRT *__xprt) __THROW; 242 243extern void svcerr_systemerr (SVCXPRT *__xprt) __THROW; 244 245/* 246 * Lowest level dispatching -OR- who owns this process anyway. 247 * Somebody has to wait for incoming requests and then call the correct 248 * service routine. The routine svc_run does infinite waiting; i.e., 249 * svc_run never returns. 250 * Since another (coexistent) package may wish to selectively wait for 251 * incoming calls or other events outside of the rpc architecture, the 252 * routine svc_getreq is provided. It must be passed readfds, the 253 * "in-place" results of a select system call (see select, section 2). 254 */ 255 256/* 257 * Global keeper of rpc service descriptors in use 258 * dynamic; must be inspected before each call to select 259 */ 260 261extern struct pollfd *svc_pollfd; 262extern int svc_max_pollfd; 263extern fd_set svc_fdset; 264#define svc_fds svc_fdset.fds_bits[0] /* compatibility */ 265 266/* 267 * a small program implemented by the svc_rpc implementation itself; 268 * also see clnt.h for protocol numbers. 269 */ 270extern void svc_getreq (int __rdfds) __THROW; 271extern void svc_getreq_common (const int __fd) __THROW; 272extern void svc_getreqset (fd_set *__readfds) __THROW; 273extern void svc_getreq_poll (struct pollfd *, const int) __THROW; 274extern void svc_exit (void) __THROW; 275extern void svc_run (void) __THROW; 276 277/* 278 * Socket to use on svcxxx_create call to get default socket 279 */ 280#define RPC_ANYSOCK -1 281 282/* 283 * These are the existing service side transport implementations 284 */ 285 286/* 287 * Memory based rpc for testing and timing. 288 */ 289extern SVCXPRT *svcraw_create (void) __THROW; 290 291/* 292 * Udp based rpc. 293 */ 294extern SVCXPRT *svcudp_create (int __sock) __THROW; 295extern SVCXPRT *svcudp_bufcreate (int __sock, u_int __sendsz, u_int __recvsz) 296 __THROW; 297 298/* 299 * Tcp based rpc. 300 */ 301extern SVCXPRT *svctcp_create (int __sock, u_int __sendsize, u_int __recvsize) 302 __THROW; 303 304/* 305 * FD based rpc. 306 */ 307extern SVCXPRT *svcfd_create (int __sock, u_int __sendsize, u_int __recvsize) 308 __THROW; 309 310/* 311 * Unix based rpc. 312 */ 313extern SVCXPRT *svcunix_create (int __sock, u_int __sendsize, u_int __recvsize, 314 char *__path) __THROW; 315 316 317__END_DECLS 318 319#endif /* rpc/svc.h */ 320