RPCGEN(1) | General Commands Manual | RPCGEN(1) |
rpcgen | infile |
rpcgen | [-A] [-a] [-b] [-C] [-D name [=value]] [-I] [-i size] [-K secs] [-L] [-M] [-N] [-T] [-v] [-Y pathname] infile |
rpcgen | -c | -h | -l | -m | -t | -Sc | -Ss [-o outfile] [infile] |
rpcgen | [-s nettype] [-o outfile] [infile] |
rpcgen | [-n netid] [-o outfile] [infile] |
The server created can be started both by the port monitors (for example, inetd or listen) or by itself. When it is started by a port monitor, it creates servers only for the transport for which the file descriptor 0 was passed. The name of the transport must be specified by setting up the environmental variable PM_TRANSPORT. When the server generated by rpcgen is executed, it creates server handles for all the transports specified in NETPATH environment variable, or if it is unset, it creates server handles for all the visible transports from /etc/netconfig file.
Note: the transports are chosen at run time and not at compile time. When the server is self-started, it backgrounds itself by default. A special define symbol RPC_SVC_FG can be used to run the server process in foreground.
The second synopsis provides special features which allow for the creation of more sophisticated RPC servers. These features include support for user provided #defines
and RPC dispatch tables. The entries in the RPC dispatch table contain:
A server can use the dispatch table to check authorization and then to execute the service routine; a client library may use it to deal with the details of storage management and XDR data conversion.
The other three synopses shown above are used when one does not want to generate all the output files, but only a particular one. Some examples of their usage is described in the EXAMPLES section below. When rpcgen is executed with the -s option, it creates servers for that particular class of transports. When executed with the -n option, it creates a server for the transport specified by netid. If infile is not specified, rpcgen accepts the standard input.
The C preprocessor, cpp(1) is run on the input file before it is actually interpreted by rpcgen For each type of output file, rpcgen defines a special preprocessor symbol for use by the rpcgen programmer:
Any line beginning with ‘%' is passed directly into the output file, uninterpreted by rpcgen.
For every data type referred to in infile rpcgen assumes that there exists a routine with the string “xdr_” prepended to the name of the data type. If this routine does not exist in the RPC/XDR library, it must be provided. Providing an undefined data type allows customization of XDR routines.
When monitoring for a server, some port monitors, like the AT&T System V Release 4 UNIX utility listen, always spawn a new process in response to a service request. If it is known that a server will be used with such a monitor, the server should exit immediately on completion. For such servers, rpcgen should be used with “-K -1”.
The options -c, -h, -l, -m, -s, and -t are used exclusively to generate a particular type of file, while the options -D and -T are global and can be used with the other options.
Name clashes can occur when using program definitions, since the apparent scoping does not really apply. Most of these can be avoided by giving unique names for programs, versions, procedures and types.
The server code generated with -n option refers to the transport indicated by netid and hence is very site specific.
$ rpcgen -T prot.x
generates the five files: prot.h, prot_clnt.c, prot_svc.c, prot_xdr.c and prot_tbl.i.
The following example sends the C data-definitions (header file) to standard output.
$ rpcgen -h prot.x
To send the test version of the -DTEST, server side stubs for all the transport belonging to the class datagram_n to standard output, use:
$ rpcgen -s datagram_n -DTEST prot.x
To create the server side stubs for the transport indicated by netid tcp, use:
$ rpcgen -n tcp -o prot_svc.c prot.x
January 19, 2008 | NetBSD 6.1 |