home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / utils / sossntr3 / src / svc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-19  |  8.5 KB  |  261 lines

  1. /*
  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.
  8.  * 
  9.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  10.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  11.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  12.  * 
  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.
  16.  * 
  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.
  20.  * 
  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.
  24.  * 
  25.  * Sun Microsystems, Inc.
  26.  * 2550 Garcia Avenue
  27.  * Mountain View, California  94043
  28.  */
  29. /*      @(#)svc.h 1.1 86/02/03 SMI      *
  30.  
  31. /*
  32.  * svc.h, Server-side remote procedure call interface.
  33.  *
  34.  * Copyright (C) 1984, Sun Microsystems, Inc.
  35.  */
  36.  
  37. /*
  38.  * This interface must manage two items concerning remote procedure calling:
  39.  *
  40.  * 1) An arbitrary number of transport connections upon which rpc requests
  41.  * are received.  The two most notable transports are TCP and UDP;  they are
  42.  * created and registered by routines in svc_tcp.c and svc_udp.c, respectively;
  43.  * they in turn call xprt_register and xprt_unregister.
  44.  *
  45.  * 2) An arbitrary number of locally registered services.  Services are
  46.  * described by the following four data: program number, version number,
  47.  * "service dispatch" function, a transport handle, and a boolean that
  48.  * indicates whether or not the exported program should be registered with a
  49.  * local binder service;  if true the program's number and version and the
  50.  * port number from the transport handle are registered with the binder.
  51.  * These data are registered with the rpc svc system via svc_register.
  52.  *
  53.  * A service's dispatch function is called whenever an rpc request comes in
  54.  * on a transport.  The request's program and version numbers must match
  55.  * those of the registered service.  The dispatch function is passed two
  56.  * parameters, struct svc_req * and SVCXPRT *, defined below.
  57.  */
  58.  
  59. enum xprt_stat {
  60.     XPRT_DIED,
  61.     XPRT_MOREREQS,
  62.     XPRT_IDLE
  63. };
  64.  
  65. /*
  66.  * Server side transport handle
  67.  */
  68. typedef struct {
  69.     SOCKET        xp_sock;
  70.     u_short        xp_port;     /* associated port number */
  71.     struct xp_ops {
  72.         bool_t    (*xp_recv)();     /* receive incomming requests */
  73.         enum xprt_stat (*xp_stat)(); /* get transport status */
  74.         bool_t    (*xp_getargs)(); /* get arguments */
  75.         bool_t    (*xp_reply)();     /* send reply */
  76.         bool_t    (*xp_freeargs)();/* free mem allocated for args */
  77.         void    (*xp_destroy)(); /* destroy this struct */
  78.     } *xp_ops;
  79.     int        xp_addrlen;     /* length of remote address */
  80.     SOCKADDR_IN     xp_raddr_in;     /* remote address */
  81.     SOCKADDR     xp_raddr;     /* remote address */
  82.     struct opaque_auth xp_verf;     /* raw response verifier */
  83.     char         *xp_p1;         /* private */
  84.     caddr_t        xp_p2;         /* private */
  85. } SVCXPRT;
  86.  
  87. /*
  88.  *  Approved way of getting address of caller
  89.  */
  90. #define svc_getcaller(x) (&((x)->xp_raddr_in))
  91.  
  92. /*
  93.  * Operations defined on an SVCXPRT handle
  94.  *
  95.  * SVCXPRT        *xprt;
  96.  * struct rpc_msg    *msg;
  97.  * xdrproc_t         xargs;
  98.  * caddr_t         argsp;
  99.  */
  100. #define SVC_RECV(xprt, msg)                \
  101.     (*(xprt)->xp_ops->xp_recv)((xprt), (msg))
  102. #define svc_recv(xprt, msg)                \
  103.     (*(xprt)->xp_ops->xp_recv)((xprt), (msg))
  104.  
  105. #define SVC_STAT(xprt)                    \
  106.     (*(xprt)->xp_ops->xp_stat)(xprt)
  107. #define svc_stat(xprt)                    \
  108.     (*(xprt)->xp_ops->xp_stat)(xprt)
  109.  
  110. #define SVC_GETARGS(xprt, xargs, argsp)            \
  111.     (*(xprt)->xp_ops->xp_getargs)((xprt), (xargs), (argsp))
  112. #define svc_getargs(xprt, xargs, argsp)            \
  113.     (*(xprt)->xp_ops->xp_getargs)((xprt), (xargs), (argsp))
  114.  
  115. #define SVC_REPLY(xprt, msg)                \
  116.     (*(xprt)->xp_ops->xp_reply) ((xprt), (msg))
  117. #define svc_reply(xprt, msg)                \
  118.     (*(xprt)->xp_ops->xp_reply) ((xprt), (msg))
  119.  
  120. #define SVC_FREEARGS(xprt, xargs, argsp)        \
  121.     (*(xprt)->xp_ops->xp_freeargs)((xprt), (xargs), (argsp))
  122. #define svc_freeargs(xprt, xargs, argsp)        \
  123.     (*(xprt)->xp_ops->xp_freeargs)((xprt), (xargs), (argsp))
  124.  
  125. #define SVC_DESTROY(xprt)                \
  126.     (*(xprt)->xp_ops->xp_destroy)(xprt)
  127. #define svc_destroy(xprt)                \
  128.     (*(xprt)->xp_ops->xp_destroy)(xprt)
  129.  
  130.  
  131. /*
  132.  * Service request
  133.  */
  134. struct svc_req {
  135.     u_long        rq_prog;    /* service program number */
  136.     u_long        rq_vers;    /* service protocol version */
  137.     u_long        rq_proc;    /* the desired procedure */
  138.     struct opaque_auth rq_cred;    /* raw creds from the wire */
  139.     caddr_t        rq_clntcred;    /* read only cooked cred */
  140.     SVCXPRT    *rq_xprt;        /* associated transport */
  141. };
  142.  
  143.  
  144. /*
  145.  * Service registration
  146.  *
  147.  * svc_register(xprt, prog, vers, dispatch, protocol)
  148.  *    SVCXPRT *xprt;
  149.  *    u_long prog;
  150.  *    u_long vers;
  151.  *    void (*dispatch)();
  152.  *    int protocol;  /* like TCP or UDP, zero means do not register 
  153.  */
  154. extern bool_t    svc_register();
  155.  
  156. /*
  157.  * Service un-registration
  158.  *
  159.  * svc_unregister(prog, vers)
  160.  *    u_long prog;
  161.  *    u_long vers;
  162.  */
  163. extern void    svc_unregister();
  164.  
  165. /*
  166.  * Transport registration.
  167.  *
  168.  * xprt_register(xprt)
  169.  *    SVCXPRT *xprt;
  170.  */
  171. extern void    xprt_register();
  172.  
  173. /*
  174.  * Transport un-register
  175.  *
  176.  * xprt_unregister(xprt)
  177.  *    SVCXPRT *xprt;
  178.  */
  179. extern void    xprt_unregister();
  180.  
  181.  
  182. /*
  183.  * When the service routine is called, it must first check to see if it
  184.  * knows about the procedure;  if not, it should call svcerr_noproc
  185.  * and return.  If so, it should deserialize its arguments via 
  186.  * SVC_GETARGS (defined above).  If the deserialization does not work,
  187.  * svcerr_decode should be called followed by a return.  Successful
  188.  * decoding of the arguments should be followed the execution of the
  189.  * procedure's code and a call to svc_sendreply.
  190.  *
  191.  * Also, if the service refuses to execute the procedure due to too-
  192.  * weak authentication parameters, svcerr_weakauth should be called.
  193.  * Note: do not confuse access-control failure with weak authentication!
  194.  *
  195.  * NB: In pure implementations of rpc, the caller always waits for a reply
  196.  * msg.  This message is sent when svc_sendreply is called.  
  197.  * Therefore pure service implementations should always call
  198.  * svc_sendreply even if the function logically returns void;  use
  199.  * xdr.h - xdr_void for the xdr routine.  HOWEVER, tcp based rpc allows
  200.  * for the abuse of pure rpc via batched calling or pipelining.  In the
  201.  * case of a batched call, svc_sendreply should NOT be called since
  202.  * this would send a return message, which is what batching tries to avoid.
  203.  * It is the service/protocol writer's responsibility to know which calls are
  204.  * batched and which are not.  Warning: responding to batch calls may
  205.  * deadlock the caller and server processes!
  206.  */
  207.  
  208. extern bool_t  svc_sendreply();
  209. extern void    svcerr_decode();
  210. extern void    svcerr_weakauth();
  211. extern void    svcerr_noproc();
  212.  
  213. /*
  214.  * Lowest level dispatching -OR- who owns this process anyway.
  215.  * Somebody has to wait for incoming requests and then call the correct
  216.  * service routine.  The routine svc_run does infinite waiting; i.e.,
  217.  * svc_run never returns.
  218.  * Since another (co-existant) package may wish to selectively wait for
  219.  * incoming calls or other events outside of the rpc architecture, the
  220.  * routine svc_getreq is provided.  It must be passed readfds, the
  221.  * "in-place" results of a select system call (see select, section 2).
  222.  */
  223.  
  224. /* dynamic; must be inspected before each call to select */
  225. extern fd_set svc_fds;
  226.  
  227. /*
  228.  * a small program implemented by the svc_rpc implementation itself;
  229.  * also see clnt.h for protocol numbers.
  230.  */
  231. extern void rpctest_service();
  232.  
  233. extern void    svc_getreq();
  234. extern void    svc_run();      /* never returns */
  235.  
  236. /*
  237.  * Socket to use on svcxxx_create call to get default socket
  238.  */
  239. #define    RPC_ANYSOCK    -1
  240.  
  241. /*
  242.  * These are the existing service side transport implementations
  243.  */
  244.  
  245. /*
  246.  * Memory based rpc for testing and timing.
  247.  */
  248. extern SVCXPRT *svcraw_create();
  249.  
  250. /*
  251.  * Udp based rpc.
  252.  */
  253. extern SVCXPRT *svcudp_create(SOCKET,int,u_short);
  254. extern SVCXPRT *svcudp_bufcreate(SOCKET,u_int,u_int,u_short);
  255.  
  256. /*
  257.  * Tcp based rpc.
  258.  */
  259. extern SVCXPRT *svctcp_create();
  260.  
  261.