v13i088: Sun RPC, release 3.9, Part11/15

Rich Salz rsalz at bbn.com
Fri Mar 4 04:43:30 AEST 1988


Submitted-by: Stephen X. Nahm <sxn at Sun.COM>
Posting-number: Volume 13, Issue 88
Archive-name: rpc3.9/part11

#! /bin/sh
# This is a shell archive. To extract, remove the header and type "sh filename"
#
echo x - doc
echo creating directory doc
mkdir doc
cd doc
echo x - rpc.prog.ms
sed -e 's/^X//' > rpc.prog.ms <<'Funky_Stuff'
X.\" @(#)rpc.prog.ms	1.2 87/11/09 3.9 RPCSRC
X.de BT
X.if \\n%=1 .tl ''- % -''
X..
X.IX "Network Programming" "" "" "" PAGE MAJOR
X.nr OF 0
X.ND
X.\" prevent excess underlining in nroff
X.if n .fp 2 R
X.OH 'Remote Procedure Call Programming Guide''Page %'
X.EH 'Page %''Remote Procedure Call Programming Guide'
X.SH
\&Remote Procedure Call Programming Guide
X.nr OF 1
X.IX "RPC Programming Guide"
X.LP
This document is intended for programmers who wish to write network 
applications using remote procedure calls (explained below), thus
avoiding low-level system primitives based on sockets.  The reader
must be familiar with the C programming language, and should have a 
working knowledge of network theory.
X.SH
X.IX rpcgen "" \fIrpcgen\fP
X.I
NOTE: Before attempting to write a network application, or to convert an
existing non-network application to run over the network, you should
be familiar with the material in this chapter.  However, for most
applications, you can circumvent the need to cope with the kinds of
details presented here by using the
X.I rpcgen
protocol compiler, which is described in detail in the next chapter,
the
\fI\f(LBrpcgen\fR Programming Guide\fI\.
The
\fRGenerating XDR Routines\fI
section of that chapter contains the complete source for a working RPC
service\(ema remote directory listing service which uses
X.B rpcgen 
to generate XDR routines as well as client and server stubs.
X.LP
X.LP
What are remote procedure calls?  Simply put, they are the high-level
communications paradigm used in the operating system.
RPC presumes the existence of
low-level networking mechanisms (such as TCP/IP and UDP/IP), and upon them
it implements a logical client to server communications system designed
specifically for the support of network applications.  With RPC, the client
makes a procedure call to send a data packet to the server.  When the
packet arrives, the server calls a dispatch routine, performs whatever
service is requested, sends back the reply, and the procedure call returns
to the client.
X.NH 0
\&Layers of RPC
X.IX "layers of RPC"
X.IX "RPC" "layers"
X.LP
The RPC interface can be seen as being divided into three layers.\**
X.FS
For a complete specification of the routines in the remote procedure
call Library, see the
X.I rpc (3N)
manual page.
X.FE
X.LP
X.I "The Highest Layer:"
X.IX RPC "The Highest Layer"
The highest layer is totally transparent to the operating system, 
machine and network upon which is is run.  It's probably best to 
think of this level as a way of \fIusing\fP RPC, rather than as 
a \fIpart of\fP RPC proper.  Programmers who write RPC routines 
should (almost) always make this layer available to others by way 
of a simple C front end to that entirely hides the networking.   
X.LP 
To illustrate, at this level a program can simply make a call to
X.I rnusers ,
a C routine which returns the number of users on a remote machine.
The user is not explicitly aware of using RPC \(em they simply 
call a procedure, just as they would call
X.I malloc
X.LP
X.I "The Middle Layer:"
X.IX RPC "The Middle Layer"
The middle layer is really "RPC proper."  Here, the user doesn't 
need to consider details about sockets, the UNIX system, or other low-level 
implementation mechanisms.  They simple make remote procedure calls 
to routines on other machines.  The selling point here is simplicity.  
It's this layer that allows RPC to pass the "hello world" test \(em 
simple things should be simple.  The middle-layer routines are used 
for most applications.
X.LP
RPC calls are made with the system routines
X.I registerrpc
X.I callrpc
and
X.I svc_run .
The first two of these are the most fundamental:
X.I registerrpc 
obtains a unique system-wide procedure-identification number, and
X.I callrpc 
actually executes a remote procedure call.  At the middle level, a 
call to 
X.I rnusers
is implemented by way of these two routines.
X.LP
The middle layer is unfortunately rarely used in serious programming 
due to its inflexibility (simplicity).  It does not allow timeout 
specifications or the choice of transport.  It allows no UNIX
process control or flexibility in case of errors.  It doesn't support
multiple kinds of call authentication.  The programmer rarely needs 
all these kinds of control, but one or two of them is often necessary.
X.LP
X.I "The Lowest Layer:"
X.IX RPC "The Lowest Layer"
The lowest layer does allow these details to be controlled by the 
programmer, and for that reason it is often necessary.  Programs 
written at this level are also most efficient, but this is rarely a
real issue \(em since RPC clients and servers rarely generate 
heavy network loads.
X.LP
Although this document only discusses the interface to C,
remote procedure calls can be made from any language.
Even though this document discusses RPC
when it is used to communicate
between processes on different machines,
it works just as well for communication
between different processes on the same machine.
X.
X.NH 2
\&The RPC Paradigm
X.IX "paradigm of RPC"
X.IX "RPC" "paradigm"
X.LP
Here is a diagram of the RPC paradigm:
X.LP
X.\" This is a PIC diagram
X.PS
L1: arrow down 1i "client " rjust "program " rjust
L2: line right 1i "\fIcallrpc()\fP" "function"
move up 1.5i; line dotted down 6i; move up 4.5i
arrow right 1i
L3: arrow down 1i "execute " rjust "request " rjust
L4: arrow right 1.5i "call" "service"
L5: arrow down 1i " service" ljust " executes" ljust
L6: arrow left 1.5i "\fIreturn\fP" "answer"
L7: arrow down 1i "request " rjust "completed " rjust
L8: line left 1i
arrow left 1i "\fIreturn\fP" "reply"
L9: arrow down 1i "program " rjust "continues " rjust
line dashed down from L2 to L9
line dashed down from L4 to L7
line dashed up 1i from L3 "service " rjust "daemon " rjust
arrow dashed down 1i from L8
move right 1i from L3
box invis "Machine B"
move left 0.7i from L2; move down
box invis "Machine A"
X.PE
X.
X.KS
X.NH 1
\&Higher Layers of RPC
X.NH 2
\&Highest Layer
X.IX "highest layer of RPC"
X.IX RPC "highest layer"
X.LP
Imagine you're writing a program that needs to know
how many users are logged into a remote machine.
You can do this by calling the RPC library routine
X.IX rusers "" "" "\fIrusers\fP" PAGE MAJOR
X.I rnusers ,
as illustrated below:
X.ie t .DS
X.el .DS L
X.ft CW
#include <stdio.h>

main(argc, argv)
	int argc;
	char **argv;
{
	int num;

	if (argc < 2) {
		fprintf(stderr, "usage: rnusers hostname\en");
		exit(1);
	}
	if ((num = rnusers(argv[1])) < 0) {
		fprintf(stderr, "error: rnusers\en");
		exit(-1);
	}
	printf("%d users on %s\en", num, argv[1]);
	exit(0);
}
X.DE
X.KE
RPC library routines such as
X.I rnusers
are in the RPC services library
X.I librpcsvc.a
Thus, the program above should be compiled with
X.DS
X.ft CW
% cc \fIprogram\fP.c -lrpcsvc
X.DE
X.I rnusers ,
like the other RPC library routines, is documented in section 3R 
of the
X.I "System Interface Manual for the Sun Workstation" ,
the same section which documents the standard Sun RPC services.  
X.IX "RPC Services"
See the 
X.I intro (3R)
manual page for an explanation of the documentation strategy 
for these services and their RPC protocols.
X.LP
Here are some of the RPC service library routines available to the 
C programmer:
X.TS
box tab (&) ;
cfI cfI
lfL l .
Routine&Description
_
X.sp.5
rnusers&Return number of users on remote machine
rusers&Return information about users on remote machine
havedisk&Determine if remote machine has disk
rstats&Get performance data from remote kernel
rwall&Write to specified remote machines
yppasswd&Update user password in Yellow Pages
X.TE
X.LP
Other RPC services \(em for example
X.I ether
X.I mount
X.I rquota
and
X.I spray
\(em are not available to the C programmer as library routines.
They do, however,
have RPC program numbers so they can be invoked with
X.I callrpc
which will be discussed in the next section.  Most of them also 
have compilable 
X.I rpcgen (1)
protocol description files.  (The
X.I rpcgen
protocol compiler radically simplifies the process of developing
network applications.  See the
\fI\f(LBrpcgen\fP Programming Guide\fR
chapter for detailed information about 
X.I rpcgen 
and 
X.I rpcgen 
protocol description files).
X.
X.KS
X.NH 2
\&Intermediate Layer
X.IX "intermediate layer of RPC"
X.IX "RPC" "intermediate layer"
X.LP
The simplest interface, which explicitly makes RPC calls, uses the 
functions
X.I callrpc
and
X.I registerrpc
Using this method, the number of remote users can be gotten as follows:
X.ie t .DS
X.el .DS L
#include <stdio.h>
#include <rpc/rpc.h>
#include <utmp.h>
#include <rpcsvc/rusers.h>

main(argc, argv)
	int argc;
	char **argv;
{
	unsigned long nusers;
	int stat;

	if (argc < 2) {
		fprintf(stderr, "usage: nusers hostname\en");
		exit(-1);
	}
	if (stat = callrpc(argv[1],
	  RUSERSPROG, RUSERSVERS, RUSERSPROC_NUM,
	  xdr_void, 0, xdr_u_long, &nusers) != 0) {
		clnt_perrno(stat);
		exit(1);
	}
	printf("%d users on %s\en", nusers, argv[1]);
	exit(0);
}
X.DE
X.KE
Each RPC procedure is uniquely defined by a program number, 
version number, and procedure number.  The program number 
specifies a group of related remote procedures, each of 
which has a different procedure number.  Each program also 
has a version number, so when a minor change is made to a 
remote service (adding a new procedure, for example), a new 
program number doesn't have to be assigned.  When you want 
to call a procedure to find the number of remote users, you 
look up the appropriate program, version and procedure numbers
in a manual, just as you look up the name of a memory allocator 
when you want to allocate memory.
X.LP
The simplest way of making remote procedure calls is with the the RPC 
library routine
X.I callrpc
It has eight parameters.  The first is the name of the remote server 
machine.  The next three parameters are the program, version, and procedure 
numbers\(emtogether they identify the procedure to be called.
The fifth and sixth parameters are an XDR filter and an argument to
be encoded and passed to the remote procedure.  
The final two parameters are a filter for decoding the results 
returned by the remote procedure and a pointer to the place where 
the procedure's results are to be stored.  Multiple arguments and
results are handled by embedding them in structures.  If 
X.I callrpc 
completes successfully, it returns zero; else it returns a nonzero 
value.  The return codes (of type
X.I "enum
cast into an integer) are found in 
X.I <rpc/clnt.h> .
X.LP
Since data types may be represented differently on different machines,
X.I callrpc 
needs both the type of the RPC argument, as well as
a pointer to the argument itself (and similarly for the result).  For
X.I RUSERSPROC_NUM ,
the return value is an
X.I "unsigned long"
so
X.I callrpc 
has
X.I xdr_u_long 
as its first return parameter, which says
that the result is of type
X.I "unsigned long"
and
X.I &nusers 
X.IX "nusers&" "" \fI&nusers\fP
as its second return parameter,
which is a pointer to where the long result will be placed.  Since
X.I RUSERSPROC_NUM 
takes no argument, the argument parameter of
X.I callrpc 
is
X.I xdr_void .
X.LP
After trying several times to deliver a message, if
X.I callrpc 
gets no answer, it returns with an error code.
The delivery mechanism is UDP,
which stands for User Datagram Protocol.
Methods for adjusting the number of retries
or for using a different protocol require you to use the lower
layer of the RPC library, discussed later in this document.
The remote server procedure
corresponding to the above might look like this:
X.ie t .DS
X.el .DS L
X.ft CW
X.ft CW
char *
nuser(indata)
	char *indata;
{
	static int nusers;

X.ft I
	/*
	 * Code here to compute the number of users
	 * and place result in variable \fInusers\fP.
	 */
X.ft CW
	return((char *)&nusers);
}
X.DE
X.LP
It takes one argument, which is a pointer to the input
of the remote procedure call (ignored in our example),
and it returns a pointer to the result.
In the current version of C,
character pointers are the generic pointers,
so both the input argument and the return value are cast to
X.I "char *"
X.LP
Normally, a server registers all of the RPC calls it plans
to handle, and then goes into an infinite loop waiting to service requests.
In this example, there is only a single procedure
to register, so the main body of the server would look like this:
X.ie t .DS
X.el .DS L
X.ft CW
#include <stdio.h>
#include <rpc/rpc.h>
#include <utmp.h>
#include <rpcsvc/rusers.h>

char *nuser();

main()
{
	registerrpc(RUSERSPROG, RUSERSVERS, RUSERSPROC_NUM,
		nuser, xdr_void, xdr_u_long);
	svc_run();		/* \fINever returns\fP */
	fprintf(stderr, "Error: svc_run returned!\en");
	exit(1);
}
X.DE
X.LP
The
X.I registerrpc
routine registers a C procedure as corresponding to a
given RPC procedure number.  The first three parameters,
X.I RUSERPROG ,
X.I RUSERSVERS ,
and
X.I RUSERSPROC_NUM 
are the program, version, and procedure numbers
of the remote procedure to be registered;
X.I nuser 
is the name of the local procedure that implements the remote
procedure; and
X.I xdr_void 
and
X.I xdr_u_long 
are the XDR filters for the remote procedure's arguments and
results, respectively.  (Multiple arguments or multiple results
are passed as structures).
X.LP
Only the UDP transport mechanism can use
X.I registerrpc
thus, it is always safe in conjunction with calls generated by
X.I callrpc .
X.SH
\&WARNING:
X.IX "UDP 8K warning"
The UDP transport mechanism can only deal with
arguments and results less than 8K bytes in length.
X.LP
X.LP
After registering the local procedure, the server program's
main procedure calls
X.I svc_run ,
the RPC library's remote procedure dispatcher.  It is this 
function that calls the remote procedures in response to RPC
call messages.  Note that the dispatcher takes care of decoding
remote procedure arguments and encoding results, using the XDR
filters specified when the remote procedure was registered.
X.
X.NH 2
\&Assigning Program Numbers
X.IX "program number assignment"
X.IX "assigning program numbers"
X.LP
Program numbers are assigned in groups of 
X.I 0x20000000 
according to the following chart:
X.DS
X.ft CW
       0x0 - 0x1fffffff	\fRDefined by Sun\fP
0x20000000 - 0x3fffffff	\fRDefined by user\fP
0x40000000 - 0x5fffffff	\fRTransient\fP
0x60000000 - 0x7fffffff	\fRReserved\fP
0x80000000 - 0x9fffffff	\fRReserved\fP
0xa0000000 - 0xbfffffff	\fRReserved\fP
0xc0000000 - 0xdfffffff	\fRReserved\fP
0xe0000000 - 0xffffffff	\fRReserved\fP
X.ft R
X.DE
Sun Microsystems administers the first group of numbers, which
should be identical for all Sun customers.  If a customer
develops an application that might be of general interest, that
application should be given an assigned number in the first
range.  The second group of numbers is reserved for specific
customer applications.  This range is intended primarily for
debugging new programs.  The third group is reserved for
applications that generate program numbers dynamically.  The
final groups are reserved for future use, and should not be
used.
X.LP
To register a protocol specification, send a request by network 
mail to
X.I rpc at sun
or write to:
X.DS
RPC Administrator
Sun Microsystems
2550 Garcia Ave.
Mountain View, CA 94043
X.DE
Please include a compilable 
X.I rpcgen 
``.x'' file describing your protocol.
You will be given a unique program number in return.
X.IX "RPC" "administration"
X.IX "administration of RPC"
X.LP
The RPC program numbers and protocol specifications 
of standard Sun RPC services can be
found in the include files in 
X.I "/usr/include/rpcsvc" .
These services, however, constitute only a small subset 
of those which have been registered.  The complete list of 
registered programs, as of the time when this manual was 
printed, is:
X.TS H
box tab (&) ;
lfBI lfBI lfBI
lfL lfL lfI .
RPC Number&Program&Description
_
X.TH
X.sp.5
100000&PMAPPROG&portmapper
100001&RSTATPROG&remote stats            
100002&RUSERSPROG&remote users            
100003&NFSPROG&nfs                     
100004&YPPROG&Yellow Pages            
100005&MOUNTPROG&mount demon             
100006&DBXPROG&remote dbx              
100007&YPBINDPROG&yp binder               
100008&WALLPROG&shutdown msg            
100009&YPPASSWDPROG&yppasswd server         
100010&ETHERSTATPROG&ether stats             
100011&RQUOTAPROG&disk quotas             
100012&SPRAYPROG&spray packets           
100013&IBM3270PROG&3270 mapper             
100014&IBMRJEPROG&RJE mapper              
100015&SELNSVCPROG&selection service       
100016&RDATABASEPROG&remote database access  
100017&REXECPROG&remote execution        
100018&ALICEPROG&Alice Office Automation 
100019&SCHEDPROG&scheduling service      
100020&LOCKPROG&local lock manager      
100021&NETLOCKPROG&network lock manager    
100022&X25PROG&x.25 inr protocol       
100023&STATMON1PROG&status monitor 1        
100024&STATMON2PROG&status monitor 2        
100025&SELNLIBPROG&selection library       
100026&BOOTPARAMPROG&boot parameters service 
100027&MAZEPROG&mazewars game           
100028&YPUPDATEPROG&yp update               
100029&KEYSERVEPROG&key server              
100030&SECURECMDPROG&secure login            
100031&NETFWDIPROG&nfs net forwarder init	
100032&NETFWDTPROG&nfs net forwarder trans	
100033&SUNLINKMAP_PROG&sunlink MAP		
100034&NETMONPROG&network monitor		
100035&DBASEPROG&lightweight database	
100036&PWDAUTHPROG&password authorization	
100037&TFSPROG&translucent file svc	
100038&NSEPROG&nse server		
100039&NSE_ACTIVATE_PROG&nse activate daemon	
X.sp .2i
150001&PCNFSDPROG&pc passwd authorization 
X.sp .2i
200000&PYRAMIDLOCKINGPROG&Pyramid-locking         
200001&PYRAMIDSYS5&Pyramid-sys5            
200002&CADDS_IMAGE&CV cadds_image		
X.sp .2i
300001&ADT_RFLOCKPROG&ADT file locking	
X.TE
X.
X.NH 2
\&Passing Arbitrary Data Types
X.IX "passing arbitrary data types"
X.IX "arbitrary data types"
X.LP
In the previous example, the RPC call passes a single
X.I "unsigned long"
RPC can handle arbitrary data structures, regardless of
different machines' byte orders or structure layout conventions,
by always converting them to a network standard called
X.I "eXternal Data Representation"
(XDR) before
sending them over the wire.
The process of converting from a particular machine representation
to XDR format is called
X.I serializing ,
and the reverse process is called
X.I deserializing .
The type field parameters of
X.I callrpc 
and
X.I registerrpc 
can be a built-in procedure like
X.I xdr_u_long 
in the previous example, or a user supplied one.
XDR has these built-in type routines:
X.IX RPC "built-in routines"
X.DS
X.ft CW
xdr_int()      xdr_u_int()      xdr_enum()
xdr_long()     xdr_u_long()     xdr_bool()
xdr_short()    xdr_u_short()    xdr_wrapstring()
xdr_char()     xdr_u_char()
X.DE
Note that the routine
X.I xdr_string
exists, but cannot be used with 
X.I callrpc 
and
X.I registerrpc ,
which only pass two parameters to their XDR routines.
X.I xdr_wrapstring 
has only two parameters, and is thus OK.  It calls 
X.I xdr_string .
X.LP
As an example of a user-defined type routine,
if you wanted to send the structure
X.DS
X.ft CW
struct simple {
	int a;
	short b;
} simple;
X.DE
then you would call
X.I callrpc
as
X.DS
X.ft CW
callrpc(hostname, PROGNUM, VERSNUM, PROCNUM,
        xdr_simple, &simple ...);
X.DE
where
X.I xdr_simple
is written as:
X.ie t .DS
X.el .DS L
X.ft CW
#include <rpc/rpc.h>

xdr_simple(xdrsp, simplep)
	XDR *xdrsp;
	struct simple *simplep;
{
	if (!xdr_int(xdrsp, &simplep->a))
		return (0);
	if (!xdr_short(xdrsp, &simplep->b))
		return (0);
	return (1);
}
X.DE
X.LP
An XDR routine returns nonzero (true in the sense of C) if it 
completes successfully, and zero otherwise.
A complete description of XDR is in the
X.I "XDR Protocol Specification" 
section of this manual, only few implementation examples are 
given here.
X.LP
In addition to the built-in primitives,
there are also the prefabricated building blocks:
X.DS
X.ft CW
xdr_array()       xdr_bytes()     xdr_reference()
xdr_vector()      xdr_union()     xdr_pointer()
xdr_string()      xdr_opaque()
X.DE
To send a variable array of integers,
you might package them up as a structure like this
X.DS
X.ft CW
struct varintarr {
	int *data;
	int arrlnth;
} arr;
X.DE
and make an RPC call such as
X.DS
X.ft CW
callrpc(hostname, PROGNUM, VERSNUM, PROCNUM,
        xdr_varintarr, &arr...);
X.DE
with
X.I xdr_varintarr 
defined as:
X.ie t .DS
X.el .DS L
X.ft CW
xdr_varintarr(xdrsp, arrp)
	XDR *xdrsp;
	struct varintarr *arrp;
{
	return (xdr_array(xdrsp, &arrp->data, &arrp->arrlnth, 
		MAXLEN, sizeof(int), xdr_int));
}
X.DE
This routine takes as parameters the XDR handle,
a pointer to the array, a pointer to the size of the array,
the maximum allowable array size,
the size of each array element,
and an XDR routine for handling each array element.
X.KS
X.LP
If the size of the array is known in advance, one can use
X.I xdr_vector ,
which serializes fixed-length arrays.
X.ie t .DS
X.el .DS L
X.ft CW
int intarr[SIZE];

xdr_intarr(xdrsp, intarr)
	XDR *xdrsp;
	int intarr[];
{
	int i;

	return (xdr_vector(xdrsp, intarr, SIZE, sizeof(int),
		xdr_int));
}
X.DE
X.KE
X.LP
XDR always converts quantities to 4-byte multiples when deserializing.
Thus, if either of the examples above involved characters
instead of integers, each character would occupy 32 bits.
That is the reason for the XDR routine
X.I xdr_bytes
which is like
X.I xdr_array
except that it packs characters;
X.I xdr_bytes 
has four parameters, similar to the first four parameters of
X.I xdr_array .
For null-terminated strings, there is also the
X.I xdr_string
routine, which is the same as
X.I xdr_bytes 
without the length parameter.
On serializing it gets the string length from
X.I strlen ,
and on deserializing it creates a null-terminated string.
X.LP
Here is a final example that calls the previously written
X.I xdr_simple 
as well as the built-in functions
X.I xdr_string 
and
X.I xdr_reference ,
which chases pointers:
X.ie t .DS
X.el .DS L
X.ft CW
struct finalexample {
	char *string;
	struct simple *simplep;
} finalexample;

xdr_finalexample(xdrsp, finalp)
	XDR *xdrsp;
	struct finalexample *finalp;
{

	if (!xdr_string(xdrsp, &finalp->string, MAXSTRLEN))
		return (0);
	if (!xdr_reference(xdrsp, &finalp->simplep,
	  sizeof(struct simple), xdr_simple);
		return (0);
	return (1);
}
X.DE
X.
X.NH 1
\&Lowest Layer of RPC
X.IX "lowest layer of RPC"
X.IX "RPC" "lowest layer"
X.LP
In the examples given so far,
RPC takes care of many details automatically for you.
In this section, we'll show you how you can change the defaults
by using lower layers of the RPC library.
It is assumed that you are familiar with sockets
and the system calls for dealing with them.
If not, consult the
X.I "IPC Primer" 
section of this manual.
X.LP
There are several occasions when you may need to use lower layers of 
RPC.  First, you may need to use TCP, since the higher layer uses UDP, 
which restricts RPC calls to 8K bytes of data.  Using TCP permits calls 
to send long streams of data.  For an example, see the 
\fITCP\fP 
section below.  Second, you may want to allocate and free memory
while serializing or deserializing with XDR routines.  There is no 
call at the higher level to let you free memory explicitly.  For more 
explanation, see the 
\fIMemory Allocation with XDR\fP 
section below.  Third, you may need to perform authentication on either 
the client or server side, by supplying credentials or verifying them.  
See the explanation in the 
\fIAuthentication\fP 
section below.
X.
X.NH 2
\&More on the Server Side
X.IX RPC "server side"
X.LP
The server for the
X.I nusers 
program shown below does the same thing as the one using
X.I registerrpc 
above, but is written using a lower layer of the RPC package:
X.ie t .DS
X.el .DS L
X.ft CW
#include <stdio.h>
#include <rpc/rpc.h>
#include <utmp.h>
#include <rpcsvc/rusers.h>

main()
{
	SVCXPRT *transp;
	int nuser();

	transp = svcudp_create(RPC_ANYSOCK);
	if (transp == NULL){
		fprintf(stderr, "can't create an RPC server\en");
		exit(1);
	}
	pmap_unset(RUSERSPROG, RUSERSVERS);
	if (!svc_register(transp, RUSERSPROG, RUSERSVERS,
			  nuser, IPPROTO_UDP)) {
		fprintf(stderr, "can't register RUSER service\en");
		exit(1);
	}
	svc_run();  /* \fINever returns\fP */
	fprintf(stderr, "should never reach this point\en");
}

nuser(rqstp, transp)
	struct svc_req *rqstp;
	SVCXPRT *transp;
{
	unsigned long nusers;

	switch (rqstp->rq_proc) {
	case NULLPROC:
		if (!svc_sendreply(transp, xdr_void, 0))
			fprintf(stderr, "can't reply to RPC call\en");
		return;
	case RUSERSPROC_NUM:
X.ft I
		/*
		 * Code here to compute the number of users
		 * and put in variable \fInusers\fP
		 */
X.ft CW
		if (!svc_sendreply(transp, xdr_u_long, &nusers)) 
			fprintf(stderr, "can't reply to RPC call\en");
		return;
	default:
		svcerr_noproc(transp);
		return;
	}
}
X.DE
X.LP
First, the server gets a transport handle, which is used
for receiving and replying to RPC messages.
X.I registerrpc 
uses
X.I svcudp_create
to get a UDP handle.
If you require a more reliable protocol, call
X.I svctcp_create
instead.
If the argument to
X.I svcudp_create 
is
X.I RPC_ANYSOCK
the RPC library creates a socket
on which to receive and reply to RPC calls.  Otherwise,
X.I svcudp_create 
expects its argument to be a valid socket number.
If you specify your own socket, it can be bound or unbound.
If it is bound to a port by the user, the port numbers of
X.I svcudp_create 
and
X.I clntcp_create
(the low-level client routine) must match.
X.LP
If the user specifies the
X.I RPC_ANYSOCK 
argument, the RPC library routines will open sockets.
Otherwise they will expect the user to do so.  The routines
X.I svcudp_create 
and 
X.I clntudp_create
will cause the RPC library routines to
X.I bind 
their socket if it is not bound already.
X.LP
A service may choose to register its port number with the
local portmapper service.  This is done is done by specifying
a non-zero protocol number in
X.I svc_register .
Incidently, a client can discover the server's port number by 
consulting the portmapper on their server's machine.  This can 
be done automatically by specifying a zero port number in 
X.I clntudp_create 
or
X.I clntcp_create .
X.LP
After creating an
X.I SVCXPRT ,
the next step is to call
X.I pmap_unset
so that if the
X.I nusers 
server crashed earlier,
any previous trace of it is erased before restarting.
More precisely,
X.I pmap_unset 
erases the entry for
X.I RUSERSPROG
from the port mapper's tables.
X.LP
Finally, we associate the program number for
X.I nusers 
with the procedure
X.I nuser .
The final argument to
X.I svc_register 
is normally the protocol being used,
which, in this case, is
X.I IPPROTO_UDP
Notice that unlike
X.I registerrpc ,
there are no XDR routines involved
in the registration process.
Also, registration is done on the program,
rather than procedure, level.
X.LP
The user routine
X.I nuser 
must call and dispatch the appropriate XDR routines
based on the procedure number.
Note that
two things are handled by
X.I nuser 
that
X.I registerrpc 
handles automatically.
The first is that procedure
X.I NULLPROC
(currently zero) returns with no results.
This can be used as a simple test
for detecting if a remote program is running.
Second, there is a check for invalid procedure numbers.
If one is detected,
X.I svcerr_noproc
is called to handle the error.
X.KS
X.LP
The user service routine serializes the results and returns
them to the RPC caller via
X.I svc_sendreply
Its first parameter is the
X.I SVCXPRT
handle, the second is the XDR routine,
and the third is a pointer to the data to be returned.
Not illustrated above is how a server
handles an RPC program that receives data.
As an example, we can add a procedure
X.I RUSERSPROC_BOOL
which has an argument
X.I nusers ,
and returns
X.I TRUE 
or
X.I FALSE 
depending on whether there are nusers logged on.
It would look like this:
X.ie t .DS
X.el .DS L
X.ft CW
case RUSERSPROC_BOOL: {
	int bool;
	unsigned nuserquery;

	if (!svc_getargs(transp, xdr_u_int, &nuserquery) {
		svcerr_decode(transp);
		return;
	}
X.ft I
	/*
	 * Code to set \fInusers\fP = number of users
	 */
X.ft CW
	if (nuserquery == nusers)
		bool = TRUE;
	else
		bool = FALSE;
	if (!svc_sendreply(transp, xdr_bool, &bool)) {
		 fprintf(stderr, "can't reply to RPC call\en");
		 exit(1);
	}
	return;
}
X.DE
X.KE
X.LP
The relevant routine is
X.I svc_getargs
which takes an
X.I SVCXPRT
handle, the XDR routine,
and a pointer to where the input is to be placed as arguments.
X.
X.NH 2
\&Memory Allocation with XDR
X.IX "memory allocation with XDR"
X.IX "XDR memory allocation"
X.IX XDR "memory allocation"
X.LP
XDR routines not only do input and output,
they also do memory allocation.
This is why the second parameter of
X.I xdr_array
is a pointer to an array, rather than the array itself.
If it is
X.I NULL ,
then
X.I xdr_array
allocates space for the array and returns a pointer to it,
putting the size of the array in the third argument.
As an example, consider the following XDR routine
X.I xdr_chararr1
which deals with a fixed array of bytes with length
X.I SIZE
X.ie t .DS
X.el .DS L
X.ft CW
xdr_chararr1(xdrsp, chararr)
	XDR *xdrsp;
	char chararr[];
{
	char *p;
	int len;

	p = chararr;
	len = SIZE;
	return (xdr_bytes(xdrsp, &p, &len, SIZE));
}
X.DE
It might be called from a server like this,
X.ie t .DS
X.el .DS L
X.ft CW
char chararr[SIZE];

svc_getargs(transp, xdr_chararr1, chararr);
X.DE
space has already been allocated in
X.I chararr .
If you want XDR to do the allocation,
you would have to rewrite this routine in the following way:
X.ie t .DS
X.el .DS L
X.ft CW
xdr_chararr2(xdrsp, chararrp)
	XDR *xdrsp;
	char **chararrp;
{
	int len;

	len = SIZE;
	return (xdr_bytes(xdrsp, charrarrp, &len, SIZE));
}
X.DE
Then the RPC call might look like this:
X.ie t .DS
X.el .DS L
X.ft CW
char *arrptr;

arrptr = NULL;
svc_getargs(transp, xdr_chararr2, &arrptr);
X.ft I
/*
 * Use the result here
 */
X.ft CW
svc_freeargs(transp, xdr_chararr2, &arrptr);
X.DE
Note that, after being used, the character array can be freed with
X.I svc_freeargs
X.I svc_freeargs 
will not attempt to free any memory if the variable indicating it 
is NULL.  For example, in the the routine 
X.I xdr_finalexample ,
given earlier, if
X.I finalp->string 
was NULL, then it would not be freed.  The same is true for 
X.I finalp->simplep .
X.LP
To summarize, each XDR routine is responsible
for serializing, deserializing, and freeing memory.
When an XDR routine is called from
X.I callrpc
the serializing part is used.
When called from
X.I svc_getargs
the deserializer is used.
And when called from
X.I svc_freeargs
the memory deallocator is used.  When building simple examples like those
in this section, a user doesn't have to worry about the three modes.  See
the 
\fIeXternal Data Representation: Sun Technical Notes\fP
chapter for examples of more sophisticated XDR routines that determine 
which of the three modes they are in and adjust their behavior accordingly.
X.
X.KS
X.NH 2
\&The Calling Side
X.IX RPC "calling side"
X.LP
When you use
X.I callrpc
you have no control over the RPC delivery
mechanism or the socket used to transport the data.
To illustrate the layer of RPC that lets you adjust these
parameters, consider the following code to call the
X.I nusers
service:
X.ie t .DS
X.el .DS L
X.ft CW
X.vs 11
#include <stdio.h>
#include <rpc/rpc.h>
#include <utmp.h>
#include <rpcsvc/rusers.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <netdb.h>

main(argc, argv)
	int argc;
	char **argv;
{
	struct hostent *hp;
	struct timeval pertry_timeout, total_timeout;
	struct sockaddr_in server_addr;
	int sock = RPC_ANYSOCK;
	register CLIENT *client;
	enum clnt_stat clnt_stat;
	unsigned long nusers;

	if (argc < 2) {
		fprintf(stderr, "usage: nusers hostname\en");
		exit(-1);
	}
	if ((hp = gethostbyname(argv[1])) == NULL) {
		fprintf(stderr, "can't get addr for %s\en",argv[1]);
		exit(-1);
	}
	pertry_timeout.tv_sec = 3;
	pertry_timeout.tv_usec = 0;
	bcopy(hp->h_addr, (caddr_t)&server_addr.sin_addr,
		hp->h_length);
	server_addr.sin_family = AF_INET;
	server_addr.sin_port =  0;
	if ((client = clntudp_create(&server_addr, RUSERSPROG,
	  RUSERSVERS, pertry_timeout, &sock)) == NULL) {
		clnt_pcreateerror("clntudp_create");
		exit(-1);
	}
	total_timeout.tv_sec = 20;
	total_timeout.tv_usec = 0;
	clnt_stat = clnt_call(client, RUSERSPROC_NUM, xdr_void,
		0, xdr_u_long, &nusers, total_timeout);
	if (clnt_stat != RPC_SUCCESS) {
		clnt_perror(client, "rpc");
		exit(-1);
	}
	clnt_destroy(client);
	close(sock);
}
X.vs
X.DE
X.KE
The low-level version of
X.I callrpc
is
X.I clnt_call
which takes a
X.I CLIENT
pointer rather than a host name.  The parameters to
X.I clnt_call 
are a
X.I CLIENT 
pointer, the procedure number,
the XDR routine for serializing the argument,
a pointer to the argument,
the XDR routine for deserializing the return value,
a pointer to where the return value will be placed,
and the time in seconds to wait for a reply.
X.LP
The
X.I CLIENT 
pointer is encoded with the transport mechanism.
X.I callrpc
uses UDP, thus it calls
X.I clntudp_create 
to get a
X.I CLIENT 
pointer.  To get TCP (Transmission Control Protocol), you would use
X.I clnttcp_create
X.LP
The parameters to
X.I clntudp_create 
are the server address, the program number, the version number,
a timeout value (between tries), and a pointer to a socket.
The final argument to
X.I clnt_call 
is the total time to wait for a response.
Thus, the number of tries is the
X.I clnt_call 
timeout divided by the
X.I clntudp_create 
timeout.
X.LP
There is one thing to note when using the
X.I clnt_destroy
call.
It deallocates any space associated with the
X.I CLIENT 
handle, but it does not close the socket associated with it,
which was passed as an argument to
X.I clntudp_create .
This makes it possible, in cases where there are multiple 
client handles using the same socket, to destroy one handle
without closing the socket that other handles are using.
X.LP
To make a stream connection, the call to
X.I clntudp_create 
is replaced with a call to
X.I clnttcp_create .
X.DS
X.ft CW
clnttcp_create(&server_addr, prognum, versnum, &sock,
               inputsize, outputsize);
X.DE
There is no timeout argument; instead, the receive and send buffer
sizes must be specified.  When the
X.I clnttcp_create 
call is made, a TCP connection is established.
All RPC calls using that
X.I CLIENT 
handle would use this connection.
The server side of an RPC call using TCP has
X.I svcudp_create
replaced by
X.I svctcp_create
X.DS
X.ft CW
transp = svctcp_create(RPC_ANYSOCK, 0, 0);
X.DE
The last two arguments to 
X.I svctcp_create 
are send and receive sizes respectively.  If `0' is specified for 
either of these, the system chooses a reasonable default.
X.
X.KS
X.NH 1
\&Other RPC Features
X.IX "RPC" "miscellaneous features"
X.IX "miscellaneous RPC features"
X.LP
This section discusses some other aspects of RPC
that are occasionally useful.
X.
X.NH 2
\&Select on the Server Side
X.IX RPC select "" \fIselect\fP
X.IX "select on the server side" "" "\fIselect\fP on the server side"
X.LP
Suppose a process is processing RPC requests
while performing some other activity.
If the other activity involves periodically updating a data structure,
the process can set an alarm signal before calling
X.I svc_run
But if the other activity
involves waiting on a a file descriptor, the
X.I svc_run
call won't work.
The code for
X.I svc_run
is as follows:
X.ie t .DS
X.el .DS L
X.ft CW
X.vs 11
void
svc_run()
{
	fd_set readfds;
	int dtbsz = getdtablesize();

	for (;;) {
		readfds = svc_fds;
		switch (select(dtbsz, &readfds, NULL,NULL,NULL)) {

		case -1:
			if (errno == EINTR)
				continue;
			perror("select");
			return;
		case 0:
			break;
		default:
			svc_getreqset(&readfds);
		}
	}
}
X.vs
X.DE
X.KE
X.LP
You can bypass
X.I svc_run
and call
X.I svc_getreqset
yourself.
All you need to know are the file descriptors
of the socket(s) associated with the programs you are waiting on.
Thus you can have your own
X.I select
that waits on both the RPC socket,
and your own descriptors.  Note that
X.I svc_fds 
is a bit mask of all the file descriptors that RPC is using for 
services.  It can change everytime that
X.I any
RPC library routine is called, because descriptors are constantly 
being opened and closed, for example for TCP connections.
X.
X.NH 2
\&Broadcast RPC
X.IX "broadcast RPC"
X.IX RPC "broadcast"
X.LP
The
X.I portmapper
is a daemon that converts RPC program numbers
into DARPA protocol port numbers; see the
X.I portmap 
man page.  You can't do broadcast RPC without the portmapper.
Here are the main differences between
broadcast RPC and normal RPC calls:
X.IP  1.
Normal RPC expects one answer, whereas
broadcast RPC expects many answers
(one or more answer from each responding machine).
X.IP  2.
Broadcast RPC can only be supported by packet-oriented (connectionless)
transport protocols like UPD/IP.
X.IP  3.
The implementation of broadcast RPC
treats all unsuccessful responses as garbage by filtering them out.
Thus, if there is a version mismatch between the
broadcaster and a remote service,
the user of broadcast RPC never knows.
X.IP  4.
All broadcast messages are sent to the portmap port.
Thus, only services that register themselves with their portmapper
are accessible via the broadcast RPC mechanism.
X.
X.NH 3
\&Broadcast RPC Synopsis
X.IX "RPC" "broadcast synopsis"
X.ie t .DS
X.el .DS L
X.ft CW
#include <rpc/pmap_clnt.h>
	. . .
enum clnt_stat	clnt_stat;
	. . .
clnt_stat = clnt_broadcast(prognum, versnum, procnum,
  inproc, in, outproc, out, eachresult)
	u_long    prognum;        /* \fIprogram number\fP */
	u_long    versnum;        /* \fIversion number\fP */
	u_long    procnum;        /* \fIprocedure number\fP */
	xdrproc_t inproc;         /* \fIxdr routine for args\fP */
	caddr_t   in;             /* \fIpointer to args\fP */
	xdrproc_t outproc;        /* \fIxdr routine for results\fP */
	caddr_t   out;            /* \fIpointer to results\fP */
	bool_t    (*eachresult)();/* \fIcall with each result gotten\fP */
X.DE
X.LP
The procedure
X.I eachresult
is called each time a valid result is obtained.
It returns a boolean that indicates
whether or not the user wants more responses.
X.ie t .DS
X.el .DS L
X.ft CW
bool_t done;
	. . . 
done = eachresult(resultsp, raddr)
	caddr_t resultsp;
	struct sockaddr_in *raddr; /* \fIAddr of responding machine\fP */
X.DE
If
X.I done
is
X.I TRUE ,
then broadcasting stops and
X.I clnt_broadcast
returns successfully.
Otherwise, the routine waits for another response.
The request is rebroadcast
after a few seconds of waiting.
If no responses come back,
the routine returns with
X.I RPC_TIMEDOUT
X.
X.NH 2
\&Batching
X.IX "batching"
X.IX RPC "batching"
X.LP
The RPC architecture is designed so that clients send a call message,
and wait for servers to reply that the call succeeded.
This implies that clients do not compute
while servers are processing a call.
This is inefficient if the client does not want or need
an acknowledgement for every message sent.
It is possible for clients to continue computing
while waiting for a response,
using RPC batch facilities.
X.LP
RPC messages can be placed in a ``pipeline'' of calls
to a desired server; this is called batching.
Batching assumes that:
1) each RPC call in the pipeline requires no response from the server,
and the server does not send a response message; and
2) the pipeline of calls is transported on a reliable
byte stream transport such as TCP/IP.
Since the server does not respond to every call,
the client can generate new calls in parallel
with the server executing previous calls.
Furthermore, the TCP/IP implementation can buffer up
many call messages, and send them to the server in one
X.I write
system call.  This overlapped execution
greatly decreases the interprocess communication overhead of
the client and server processes,
and the total elapsed time of a series of calls.
X.LP
Since the batched calls are buffered,
the client should eventually do a legitimate call
in order to flush the pipeline.
X.LP
A contrived example of batching follows.
Assume a string rendering service (like a window system)
has two similar calls: one renders a string and returns void results,
while the other renders a string and remains silent.
The service (using the TCP/IP transport) may look like:
X.ie t .DS
X.el .DS L
X.ft CW
#include <stdio.h>
#include <rpc/rpc.h>
#include <suntool/windows.h>

void windowdispatch();

main()
{
	SVCXPRT *transp;

	transp = svctcp_create(RPC_ANYSOCK, 0, 0);
	if (transp == NULL){
		fprintf(stderr, "can't create an RPC server\en");
		exit(1);
	}
	pmap_unset(WINDOWPROG, WINDOWVERS);
	if (!svc_register(transp, WINDOWPROG, WINDOWVERS,
	  windowdispatch, IPPROTO_TCP)) {
		fprintf(stderr, "can't register WINDOW service\en");
		exit(1);
	}
	svc_run();  /* \fINever returns\fP */
	fprintf(stderr, "should never reach this point\en");
}

void
windowdispatch(rqstp, transp)
	struct svc_req *rqstp;
	SVCXPRT *transp;
{
	char *s = NULL;

	switch (rqstp->rq_proc) {
	case NULLPROC:
		if (!svc_sendreply(transp, xdr_void, 0)) 
			fprintf(stderr, "can't reply to RPC call\en");
		return;
	case RENDERSTRING:
		if (!svc_getargs(transp, xdr_wrapstring, &s)) {
			fprintf(stderr, "can't decode arguments\en");
X.ft I
			/*
			 * Tell caller he screwed up
			 */
X.ft CW
			svcerr_decode(transp);
			break;
		}
X.ft I
		/*
		 * Call here to render the string \fIs\fP
		 */
X.ft CW
		if (!svc_sendreply(transp, xdr_void, NULL)) 
			fprintf(stderr, "can't reply to RPC call\en");
		break;
	case RENDERSTRING_BATCHED:
		if (!svc_getargs(transp, xdr_wrapstring, &s)) {
			fprintf(stderr, "can't decode arguments\en");
X.ft I
			/*
			 * We are silent in the face of protocol errors
			 */
X.ft CW
			break;
		}
X.ft I
		/*
		 * Call here to render string s, but send no reply!
		 */
X.ft CW
		break;
	default:
		svcerr_noproc(transp);
		return;
	}
X.ft I
	/*
	 * Now free string allocated while decoding arguments
	 */
X.ft CW
	svc_freeargs(transp, xdr_wrapstring, &s);
}
X.DE
Of course the service could have one procedure
that takes the string and a boolean
to indicate whether or not the procedure should respond.
X.LP
In order for a client to take advantage of batching,
the client must perform RPC calls on a TCP-based transport
and the actual calls must have the following attributes:
1) the result's XDR routine must be zero
X.I NULL ),
and 2) the RPC call's timeout must be zero.
X.KS
X.LP
Here is an example of a client that uses batching
to render a bunch of strings;
the batching is flushed when the client gets a null string:
X.ie t .DS
X.el .DS L
X.ft CW
X.vs 11
#include <stdio.h>
#include <rpc/rpc.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <netdb.h>
#include <suntool/windows.h>

main(argc, argv)
	int argc;
	char **argv;
{
	struct hostent *hp;
	struct timeval pertry_timeout, total_timeout;
	struct sockaddr_in server_addr;
	int sock = RPC_ANYSOCK;
	register CLIENT *client;
	enum clnt_stat clnt_stat;
	char buf[1000], *s = buf;

	if ((client = clnttcp_create(&server_addr,
	  WINDOWPROG, WINDOWVERS, &sock, 0, 0)) == NULL) {
		perror("clnttcp_create");
		exit(-1);
	}
	total_timeout.tv_sec = 0;
	total_timeout.tv_usec = 0;
	while (scanf("%s", s) != EOF) {
		clnt_stat = clnt_call(client, RENDERSTRING_BATCHED,
			xdr_wrapstring, &s, NULL, NULL, total_timeout);
		if (clnt_stat != RPC_SUCCESS) {
			clnt_perror(client, "batched rpc");
			exit(-1);
		}
	}

	/* \fINow flush the pipeline\fP */

	total_timeout.tv_sec = 20;
	clnt_stat = clnt_call(client, NULLPROC, xdr_void, NULL,
		xdr_void, NULL, total_timeout);
	if (clnt_stat != RPC_SUCCESS) {
		clnt_perror(client, "rpc");
		exit(-1);
	}
	clnt_destroy(client);
}
X.vs
X.DE
X.KE
Since the server sends no message,
the clients cannot be notified of any of the failures that may occur.
Therefore, clients are on their own when it comes to handling errors.
X.LP
The above example was completed to render
all of the (2000) lines in the file
X.I /etc/termcap .
The rendering service did nothing but throw the lines away.
The example was run in the following four configurations:
1) machine to itself, regular RPC;
2) machine to itself, batched RPC;
3) machine to another, regular RPC; and
4) machine to another, batched RPC.
The results are as follows:
1) 50 seconds;
2) 16 seconds;
3) 52 seconds;
4) 10 seconds.
Running
X.I fscanf
on
X.I /etc/termcap 
only requires six seconds.
These timings show the advantage of protocols
that allow for overlapped execution,
though these protocols are often hard to design.
X.
X.NH 2
\&Authentication
X.IX "authentication"
X.IX "RPC" "authentication"
X.LP
In the examples presented so far,
the caller never identified itself to the server,
and the server never required an ID from the caller.
Clearly, some network services, such as a network filesystem,
require stronger security than what has been presented so far.
X.LP
In reality, every RPC call is authenticated by
the RPC package on the server, and similarly,
the RPC client package generates and sends authentication parameters.
Just as different transports (TCP/IP or UDP/IP)
can be used when creating RPC clients and servers,
different forms of authentication can be associated with RPC clients;
the default authentication type used as a default is type
X.I none .
X.LP
The authentication subsystem of the RPC package is open ended.
That is, numerous types of authentication are easy to support.
X.NH 3
\&UNIX Authentication
X.IX "UNIX Authentication"
X.IP "\fIThe Client Side\fP"
X.LP
When a caller creates a new RPC client handle as in:
X.DS
X.ft CW
clnt = clntudp_create(address, prognum, versnum,
		      wait, sockp)
X.DE
the appropriate transport instance defaults
the associate authentication handle to be
X.DS
X.ft CW
clnt->cl_auth = authnone_create();
X.DE
The RPC client can choose to use
X.I UNIX
style authentication by setting
X.I clnt\->cl_auth
after creating the RPC client handle:
X.DS
X.ft CW
clnt->cl_auth = authunix_create_default();
X.DE
This causes each RPC call associated with
X.I clnt
to carry with it the following authentication credentials structure:
X.ie t .DS
X.el .DS L
X.ft I
/*
 * UNIX style credentials.
 */
X.ft CW
struct authunix_parms {
    u_long  aup_time;       /* \fIcredentials creation time\fP */
    char    *aup_machname;  /* \fIhost name where client is\fP */
    int     aup_uid;        /* \fIclient's UNIX effective uid\fP */
    int     aup_gid;        /* \fIclient's current group id\fP */
    u_int   aup_len;        /* \fIelement length of aup_gids\fP */
    int     *aup_gids;      /* \fIarray of groups user is in\fP */
};
X.DE
These fields are set by
X.I authunix_create_default
by invoking the appropriate system calls.
Since the RPC user created this new style of authentication,
the user is responsible for destroying it with:
X.DS
X.ft CW
auth_destroy(clnt->cl_auth);
X.DE
This should be done in all cases, to conserve memory.
X.sp
X.IP "\fIThe Server Side\fP"
X.LP
Service implementors have a harder time dealing with authentication issues
since the RPC package passes the service dispatch routine a request
that has an arbitrary authentication style associated with it.
Consider the fields of a request handle passed to a service dispatch routine:
X.ie t .DS
X.el .DS L
X.ft I
/*
 * An RPC Service request
 */
X.ft CW
struct svc_req {
    u_long    rq_prog;    	/* \fIservice program number\fP */
    u_long    rq_vers;    	/* \fIservice protocol vers num\fP */
    u_long    rq_proc;    	/* \fIdesired procedure number\fP */
    struct opaque_auth rq_cred; /* \fIraw credentials from wire\fP */
    caddr_t   rq_clntcred;  /* \fIcredentials (read only)\fP */
};
X.DE
The
X.I rq_cred
is mostly opaque, except for one field of interest:
the style or flavor of authentication credentials:
X.ie t .DS
X.el .DS L
X.ft I
/*
 * Authentication info.  Mostly opaque to the programmer.
 */
X.ft CW
struct opaque_auth {
    enum_t  oa_flavor;  /* \fIstyle of credentials\fP */
    caddr_t oa_base;    /* \fIaddress of more auth stuff\fP */
    u_int   oa_length;  /* \fInot to exceed \fIMAX_AUTH_BYTES */
};
X.DE
X.IX RPC guarantees
The RPC package guarantees the following
to the service dispatch routine:
X.IP  1.
That the request's
X.I rq_cred
is well formed.  Thus the service implementor may inspect the request's
X.I rq_cred.oa_flavor
to determine which style of authentication the caller used.
The service implementor may also wish to inspect the other fields of
X.I rq_cred
if the style is not one of the styles supported by the RPC package.
X.IP  2.
That the request's
X.I rq_clntcred
field is either
X.I NULL 
or points to a well formed structure
that corresponds to a supported style of authentication credentials.
Remember that only
X.I unix
style is currently supported, so (currently)
X.I rq_clntcred
could be cast to a pointer to an
X.I authunix_parms
structure.  If
X.I rq_clntcred
is
X.I NULL ,
the service implementor may wish to inspect the other (opaque) fields of
X.I rq_cred
in case the service knows about a new type of authentication
that the RPC package does not know about.
X.LP
Our remote users service example can be extended so that
it computes results for all users except UID 16:
X.ie t .DS
X.el .DS L
X.ft CW
X.vs 11
nuser(rqstp, transp)
	struct svc_req *rqstp;
	SVCXPRT *transp;
{
	struct authunix_parms *unix_cred;
	int uid;
	unsigned long nusers;

X.ft I
	/*
	 * we don't care about authentication for null proc
	 */
X.ft CW
	if (rqstp->rq_proc == NULLPROC) {
		if (!svc_sendreply(transp, xdr_void, 0)) {
			fprintf(stderr, "can't reply to RPC call\en");
			exit(1);
		 }
		 return;
	}
X.ft I
	/*
	 * now get the uid
	 */
X.ft CW
	switch (rqstp->rq_cred.oa_flavor) {
	case AUTH_UNIX:
		unix_cred = 
			(struct authunix_parms *)rqstp->rq_clntcred;
		uid = unix_cred->aup_uid;
		break;
	case AUTH_NULL:
	default:
		svcerr_weakauth(transp);
		return;
	}
	switch (rqstp->rq_proc) {
	case RUSERSPROC_NUM:
X.ft I
		/*
		 * make sure caller is allowed to call this proc
		 */
X.ft CW
		if (uid == 16) {
			svcerr_systemerr(transp);
			return;
		}
X.ft I
		/*
		 * code here to compute the number of users
		 * and put in variable nusers
		 */
X.ft CW
		if (!svc_sendreply(transp, xdr_u_long, &nusers)) {
			fprintf(stderr, "can't reply to RPC call\en");
			exit(1);
		}
		return;
	default:
		svcerr_noproc(transp);
		return;
	}
}
X.vs
X.DE
A few things should be noted here.
First, it is customary not to check
the authentication parameters associated with the
X.I NULLPROC
(procedure number zero).
Second, if the authentication parameter's type is not suitable
for your service, you should call
X.I svcerr_weakauth
And finally, the service protocol itself should return status
for access denied; in the case of our example, the protocol
does not have such a status, so we call the service primitive
X.I svcerr_systemerr
instead.
X.LP
The last point underscores the relation between
the RPC authentication package and the services;
RPC deals only with 
X.I authentication 
and not with individual services' 
X.I "access control" .
The services themselves must implement their own access control policies
and reflect these policies as return statuses in their protocols.
X.NH 2
\&Using Inetd
X.IX "using inetd" "" "using \&\fIinetd\fP"
X.LP
An RPC server can be started from
X.I inetd
The only difference from the usual code is that the service
creation routine should be called in the following form:
X.ie t .DS
X.el .DS L
X.ft CW
transp = svcudp_create(0);     /* \fIFor UDP\fP */
transp = svctcp_create(0,0,0); /* \fIFor listener TCP sockets\fP */
transp = svcfd_create(0,0,0);  /* \fIFor connected TCP sockets\fP */
X.DE
since
X.I inet
passes a socket as file descriptor 0.
Also,
X.I svc_register
should be called as
X.ie t .DS
X.el .DS L
X.ft CW
svc_register(transp, PROGNUM, VERSNUM, service, 0);
X.DE
with the final flag as 0,
since the program would already be registered by
X.I inetd
Remember that if you want to exit
from the server process and return control to
X.I inet
you need to explicitly exit, since
X.I svc_run
never returns.
X.LP
The format of entries in 
X.I /etc/inetd.conf 
for RPC services is in one of the following two forms:
X.ie t .DS
X.el .DS L
X.ft CW
p_name/version dgram  rpc/udp wait/nowait user server args
p_name/version stream rpc/tcp wait/nowait user server args
X.DE
where
X.I p_name
is the symbolic name of the program as it appears in
X.I rpc (5),
X.I server
is the C code implementing the server,
and
X.I program
and
X.I version
are the program and version numbers of the service.
For more information, see
X.I inetd.conf (5).
X.LP
If the same program handles multiple versions,
then the version number can be a range,
as in this example:
X.ie t .DS
X.el .DS L
X.ft CW
rstatd/1-2 dgram rpc/udp wait root /usr/etc/rpc.rstatd
X.DE
X.NH 1
\&More Examples
X.sp 1
X.NH 2
\&Versions
X.IX "versions"
X.IX "RPC" "versions"
X.LP
By convention, the first version number of program
X.I PROG
is
X.I PROGVERS_ORIG
and the most recent version is
X.I PROGVERS
Suppose there is a new version of the
X.I user
program that returns an
X.I "unsigned
rather than a
X.I long.
If we name this version
X.I RUSERSVERS_SHORT
then a server that wants to support both versions
would do a double register.
X.ie t .DS
X.el .DS L
X.ft CW
if (!svc_register(transp, RUSERSPROG, RUSERSVERS_ORIG,
  nuser, IPPROTO_TCP)) {
	fprintf(stderr, "can't register RUSER service\en");
	exit(1);
}
if (!svc_register(transp, RUSERSPROG, RUSERSVERS_SHORT,
  nuser, IPPROTO_TCP)) {
	fprintf(stderr, "can't register RUSER service\en");
	exit(1);
}
X.DE
Both versions can be handled by the same C procedure:
X.ie t .DS
X.el .DS L
X.ft CW
X.vs 11
nuser(rqstp, transp)
	struct svc_req *rqstp;
	SVCXPRT *transp;
{
	unsigned long nusers;
	unsigned short nusers2;

	switch (rqstp->rq_proc) {
	case NULLPROC:
		if (!svc_sendreply(transp, xdr_void, 0)) {
			fprintf(stderr, "can't reply to RPC call\en");
			exit(1);
		}
		return;
	case RUSERSPROC_NUM:
X.ft I
		/*
		 * code here to compute the number of users
		 * and put in variable nusers
		 */
X.ft CW
		nusers2 = nusers;
		switch (rqstp->rq_vers) {
		case RUSERSVERS_ORIG:
			if (!svc_sendreply(transp, xdr_u_long, &nusers)) {
				fprintf(stderr, "can't reply to RPC call\en");
			}
			break;
		case RUSERSVERS_SHORT:
			if (!svc_sendreply(transp, xdr_u_short, &nusers2)) {
				fprintf(stderr, "can't reply to RPC call\en");
			}
			break;
		}
	default:
		svcerr_noproc(transp);
		return;
	}
}
X.vs
X.DE
X.
X.KS
X.NH 2
\&TCP
X.IX "TCP"
X.LP
Here is an example that is essentially
X.I rcp
The initiator of the RPC
X.I snd
call takes its standard input and sends it to the server
X.I rcv
which prints it on standard output.
The RPC call uses TCP.
This also illustrates an XDR procedure that behaves differently
on serialization than on deserialization.
X.ie t .DS
X.el .DS L
X.vs 11
X.ft I
/*
 * The xdr routine:
 *		on decode, read from wire, write onto fp
 *		on encode, read from fp, write onto wire
 */
X.ft CW
#include <stdio.h>
#include <rpc/rpc.h>

xdr_rcp(xdrs, fp)
	XDR *xdrs;
	FILE *fp;
{
	unsigned long size;
	char buf[BUFSIZ], *p;

	if (xdrs->x_op == XDR_FREE)/* nothing to free */
		return 1;
	while (1) {
		if (xdrs->x_op == XDR_ENCODE) {
			if ((size = fread(buf, sizeof(char), BUFSIZ,
			  fp)) == 0 && ferror(fp)) {
				fprintf(stderr, "can't fread\en");
				exit(1);
			}
		}
		p = buf;
		if (!xdr_bytes(xdrs, &p, &size, BUFSIZ))
			return 0;
		if (size == 0)
			return 1;
		if (xdrs->x_op == XDR_DECODE) {
			if (fwrite(buf, sizeof(char), size,
			  fp) != size) {
				fprintf(stderr, "can't fwrite\en");
				exit(1);
			}
		}
	}
}
X.vs
X.DE
X.KE
X.ie t .DS
X.el .DS L
X.vs 11
X.ft I
/*
 * The sender routines
 */
X.ft CW
#include <stdio.h>
#include <netdb.h>
#include <rpc/rpc.h>
#include <sys/socket.h>
#include <sys/time.h>

main(argc, argv)
	int argc;
	char **argv;
{
	int xdr_rcp();
	int err;

	if (argc < 2) {
		fprintf(stderr, "usage: %s servername\en", argv[0]);
		exit(-1);
	}
	if ((err = callrpctcp(argv[1], RCPPROG, RCPPROC,
	  RCPVERS, xdr_rcp, stdin, xdr_void, 0) != 0)) {
		clnt_perrno(err);
		fprintf(stderr, "can't make RPC call\en");
		exit(1);
	}
}

callrpctcp(host, prognum, procnum, versnum,
           inproc, in, outproc, out)
	char *host, *in, *out;
	xdrproc_t inproc, outproc;
{
	struct sockaddr_in server_addr;
	int socket = RPC_ANYSOCK;
	enum clnt_stat clnt_stat;
	struct hostent *hp;
	register CLIENT *client;
	struct timeval total_timeout;

	if ((hp = gethostbyname(host)) == NULL) {
		fprintf(stderr, "can't get addr for '%s'\en", host);
		exit(-1);
	}
	bcopy(hp->h_addr, (caddr_t)&server_addr.sin_addr,
		hp->h_length);
	server_addr.sin_family = AF_INET;
	server_addr.sin_port =  0;
	if ((client = clnttcp_create(&server_addr, prognum,
	  versnum, &socket, BUFSIZ, BUFSIZ)) == NULL) {
		perror("rpctcp_create");
		exit(-1);
	}
	total_timeout.tv_sec = 20;
	total_timeout.tv_usec = 0;
	clnt_stat = clnt_call(client, procnum,
		inproc, in, outproc, out, total_timeout);
	clnt_destroy(client);
	return (int)clnt_stat;
}
X.vs
X.DE
X.ie t .DS
X.el .DS L
X.vs 11
X.ft I
/*
 * The receiving routines
 */
X.ft CW
#include <stdio.h>
#include <rpc/rpc.h>

main()
{
	register SVCXPRT *transp;
     int rcp_service(), xdr_rcp(); 

	if ((transp = svctcp_create(RPC_ANYSOCK,
	  BUFSIZ, BUFSIZ)) == NULL) {
		fprintf("svctcp_create: error\en");
		exit(1);
	}
	pmap_unset(RCPPROG, RCPVERS);
	if (!svc_register(transp,
	  RCPPROG, RCPVERS, rcp_service, IPPROTO_TCP)) {
		fprintf(stderr, "svc_register: error\en");
		exit(1);
	}
	svc_run();  /* \fInever returns\fP */
	fprintf(stderr, "svc_run should never return\en");
}

rcp_service(rqstp, transp)
	register struct svc_req *rqstp;
	register SVCXPRT *transp;
{
	switch (rqstp->rq_proc) {
	case NULLPROC:
		if (svc_sendreply(transp, xdr_void, 0) == 0) {
			fprintf(stderr, "err: rcp_service");
			exit(1);
		}
		return;
	case RCPPROC_FP:
		if (!svc_getargs(transp, xdr_rcp, stdout)) {
			svcerr_decode(transp);
			return;
		}
		if (!svc_sendreply(transp, xdr_void, 0)) {
			fprintf(stderr, "can't reply\en");
			return;
		}
		exit(0);
	default:
		svcerr_noproc(transp);
		return;
	}
}
X.vs
X.DE
X.
X.NH 2
\&Callback Procedures
X.IX RPC "callback procedures"
X.LP
Occasionally, it is useful to have a server become a client,
and make an RPC call back the process which is its client.
An example is remote debugging,
where the client is a window system program,
and the server is a debugger running on the remote machine.
Most of the time,
the user clicks a mouse button at the debugging window,
which converts this to a debugger command,
and then makes an RPC call to the server
(where the debugger is actually running),
telling it to execute that command.
However, when the debugger hits a breakpoint, the roles are reversed,
and the debugger wants to make an rpc call to the window program,
so that it can inform the user that a breakpoint has been reached.
X.LP
In order to do an RPC callback,
you need a program number to make the RPC call on.
Since this will be a dynamically generated program number,
it should be in the transient range,
X.I "0x40000000 - 0x5fffffff" .
The routine
X.I gettransient
returns a valid program number in the transient range,
and registers it with the portmapper.
It only talks to the portmapper running on the same machine as the
X.I gettransient
routine itself.  The call to
X.I pmap_set
is a test and set operation,
in that it indivisibly tests whether a program number
has already been registered,
and if it has not, then reserves it.  On return, the
X.I sockp
argument will contain a socket that can be used
as the argument to an
X.I svcudp_create
or
X.I svctcp_create
call.
X.ie t .DS
X.el .DS L
X.ft CW
X.vs 11
#include <stdio.h>
#include <rpc/rpc.h>
#include <sys/socket.h>

gettransient(proto, vers, sockp)
	int proto, vers, *sockp;
{
	static int prognum = 0x40000000;
	int s, len, socktype;
	struct sockaddr_in addr;

	switch(proto) {
		case IPPROTO_UDP:
			socktype = SOCK_DGRAM;
			break;
		case IPPROTO_TCP:
			socktype = SOCK_STREAM;
			break;
		default:
			fprintf(stderr, "unknown protocol type\en");
			return 0;
	}
	if (*sockp == RPC_ANYSOCK) {
		if ((s = socket(AF_INET, socktype, 0)) < 0) {
			perror("socket");
			return (0);
		}
		*sockp = s;
	}
	else
		s = *sockp;
	addr.sin_addr.s_addr = 0;
	addr.sin_family = AF_INET;
	addr.sin_port = 0;
	len = sizeof(addr);
X.ft I
	/*
	 * may be already bound, so don't check for error
	 */
X.ft CW
	bind(s, &addr, len);
	if (getsockname(s, &addr, &len)< 0) {
		perror("getsockname");
		return (0);
	}
	while (!pmap_set(prognum++, vers, proto, 
		ntohs(addr.sin_port))) continue;
	return (prognum-1);
}
X.vs
X.DE
X.I
NOTE:
The call to
X.I ntohs
is necessary to ensure that the port number in
X.I "addr.sin_port" ,
which is in 
X.I network 
byte order, is passed in 
X.I host
byte order (as
X.I pmap_set 
expects).  This works on all Sun machines.  See the 
X.I byteorder (3N)
man page for more details on the conversion of network
addresses from network to host byte order.
X.KS
X.LP
The following pair of programs illustrate how to use the
X.I gettransient
routine.
The client makes an RPC call to the server,
passing it a transient program number.
Then the client waits around to receive a callback
from the server at that program number.
The server registers the program
X.I EXAMPLEPROG
so that it can receive the RPC call
informing it of the callback program number.
Then at some random time (on receiving an
X.I ALRM
signal in this example), it sends a callback RPC call,
using the program number it received earlier.
X.ie t .DS
X.el .DS L
X.vs 11
X.ft I
/*
 * client
 */
X.ft CW
#include <stdio.h>
#include <rpc/rpc.h>

int callback();
char hostname[256];

main()
{
	int x, ans, s;
	SVCXPRT *xprt;

	gethostname(hostname, sizeof(hostname));
	s = RPC_ANYSOCK;
	x = gettransient(IPPROTO_UDP, 1, &s);
	fprintf(stderr, "client gets prognum %d\en", x);
	if ((xprt = svcudp_create(s)) == NULL) {
	  fprintf(stderr, "rpc_server: svcudp_create\en");
		exit(1);
	}
X.ft I
	/* protocol is 0 - gettransient() does registering
	 */
X.ft CW
	(void)svc_register(xprt, x, 1, callback, 0);
	ans = callrpc(hostname, EXAMPLEPROG, EXAMPLEVERS,
		EXAMPLEPROC_CALLBACK, xdr_int, &x, xdr_void, 0);
	if ((enum clnt_stat) ans != RPC_SUCCESS) {
		fprintf(stderr, "call: ");
		clnt_perrno(ans);
		fprintf(stderr, "\en");
	}
	svc_run();
	fprintf(stderr, "Error: svc_run shouldn't return\en");
}

callback(rqstp, transp)
	register struct svc_req *rqstp;
	register SVCXPRT *transp;
{
	switch (rqstp->rq_proc) {
		case 0:
			if (!svc_sendreply(transp, xdr_void, 0)) {
				fprintf(stderr, "err: rusersd\en");
				exit(1);
			}
			exit(0);
		case 1:
			if (!svc_getargs(transp, xdr_void, 0)) {
				svcerr_decode(transp);
				exit(1);
			}
			fprintf(stderr, "client got callback\en");
			if (!svc_sendreply(transp, xdr_void, 0)) {
				fprintf(stderr, "err: rusersd");
				exit(1);
			}
	}
}
X.vs
X.DE
X.KE
X.ie t .DS
X.el .DS L
X.vs 11
X.ft I
/*
 * server
 */
X.ft CW
#include <stdio.h>
#include <rpc/rpc.h>
#include <sys/signal.h>

char *getnewprog();
char hostname[256];
int docallback();
int pnum;		/* \fIprogram number for callback routine\fP */

main()
{
	gethostname(hostname, sizeof(hostname));
	registerrpc(EXAMPLEPROG, EXAMPLEVERS,
	  EXAMPLEPROC_CALLBACK, getnewprog, xdr_int, xdr_void);
	fprintf(stderr, "server going into svc_run\en");
	signal(SIGALRM, docallback);
	alarm(10);
	svc_run();
	fprintf(stderr, "Error: svc_run shouldn't return\en");
}

char *
getnewprog(pnump)
	char *pnump;
{
	pnum = *(int *)pnump;
	return NULL;
}

docallback()
{
	int ans;

	ans = callrpc(hostname, pnum, 1, 1, xdr_void, 0,
		xdr_void, 0);
	if (ans != 0) {
		fprintf(stderr, "server: ");
		clnt_perrno(ans);
		fprintf(stderr, "\en");
	}
}
X.vs
X.DE
Funky_Stuff
cd ..
echo more files to follow
exit
-- 
Please send comp.sources.unix-related mail to rsalz at uunet.uu.net.



More information about the Comp.sources.unix mailing list