libutil: add O_NOCTTY back to old pty open code
[minix.git] / lib / libc / rpc / rpc_svc_create.3
blobff07a52613beac5dcd988d446b25a0a0d8626eb0
1 .\" @(#)rpc_svc_create.3n 1.26 93/08/26 SMI; from SVr4
2 .\" Copyright 1989 AT&T
3 .\" @(#)rpc_svc_create 1.3 89/06/28 SMI;
4 .\" Copyright (c) 1988 Sun Microsystems, Inc. - All Rights Reserved.
5 .\" $NetBSD: rpc_svc_create.3,v 1.11 2010/03/22 19:30:54 joerg Exp $
6 .Dd May 3, 1993
7 .Dt RPC_SVC_CREATE 3
8 .Os
9 .Sh NAME
10 .Nm rpc_svc_create ,
11 .Nm svc_control ,
12 .Nm svc_create ,
13 .Nm svc_destroy ,
14 .Nm svc_dg_create ,
15 .Nm svc_fd_create ,
16 .Nm svc_raw_create ,
17 .Nm svc_tli_create ,
18 .Nm svc_tp_create ,
19 .Nm svc_vc_create
20 .Nd library routines for the creation of server handles
21 .Sh LIBRARY
22 .Lb libc
23 .Sh SYNOPSIS
24 .In rpc/rpc.h
25 .Ft bool_t
26 .Fn svc_control "SVCXPRT *svc" "const u_int req" "void *info"
27 .Ft int
28 .Fn svc_create "const void (*dispatch)(struct svc_req *, SVCXPRT *)" "const rpcprog_t prognum" "const rpcvers_t versnum" "const char *nettype"
29 .Ft SVCXPRT *"
30 .Fn svc_dg_create "const int fildes" "const u_int sendsz" "const u_int recvsz"
31 .Ft void
32 .Fn svc_destroy "SVCXPRT *xprt"
33 .Ft "SVCXPRT *"
34 .Fn svc_fd_create "const int fildes" "const u_int sendsz" "const u_int recvsz"
35 .Ft "SVCXPRT *"
36 .Fn svc_raw_create "void"
37 .Ft "SVCXPRT *"
38 .Fn svc_tli_create "const int fildes" "const struct netconfig *netconf" "const struct t_bind *bindaddr" "const u_int sendsz" "const u_int recvsz"
39 .Ft "SVCXPRT *"
40 .Fn svc_tp_create "const void (*dispatch)(const struct svc_reg *, const SVCXPRT  *)" "const rpcprog_t prognum" "const rpcvers_t versnum" "const struct netconfig *netconf"
41 .Ft "SVCXPRT *"
42 .Fn svc_vc_create "const int fildes" "const u_int sendsz" "const u_int recvsz"
43 .Sh DESCRIPTION
44 These routines are part of the RPC
45 library which allows C language programs to make procedure
46 calls on servers across the network.
47 These routines deal with the creation of service handles.
48 Once the handle is created, the server can be invoked by calling
49 .Fn svc_run .
50 .Sh ROUTINES
51 See
52 .Xr rpc 3
53 for the definition of the
54 .Dv SVCXPRT
55 data structure.
56 .Pp
57 .Bl -tag -width XXXXX
58 .It Fn svc_control
59 A function to change or retrieve various information
60 about a service object.
61 .Fa req
62 indicates the type of operation and
63 .Fa info
64 is a pointer to the information.
65 The supported values of
66 .Fa req ,
67 their argument types, and what they do are:
68 .Bl -tag -width SVCGET_XID
69 .It Dv SVCGET_VERSQUIET
70 If a request is received for a program number
71 served by this server but the version number
72 is outside the range registered with the server,
74 .Dv RPC_PROGVERSMISMATCH
75 error will normally
76 be returned.
77 .Fa info
78 should be a pointer to an integer.
79 Upon successful completion of the
80 .Dv SVCGET_VERSQUIET
81 request,
82 .Fa *info
83 contains an
84 integer which describes the server's current
85 behavior:  0 indicates normal server behavior
86 (that is, an
87 .Dv RPC_PROGVERSMISMATCH
88 error
89 will be returned); 1 indicates that the out of
90 range request will be silently ignored.
91 .Pp
92 .It Dv SVCSET_VERSQUIET
93 If a request is received for a program number
94 served by this server but the version number
95 is outside the range registered with the server,
97 .Dv RPC_PROGVERSMISMATCH
98 error will normally be returned.
99 It is sometimes desirable to change this behavior.
100 .Fa info
101 should be a
102 pointer to an integer which is either 0
103 (indicating normal server behavior - an
104 .Dv RPC_PROGVERSMISMATCH
105 error will be returned),
106 or 1 (indicating that the out of range request
107 should be silently ignored).
110 .It Fn svc_create
111 .Fn svc_create
112 creates server handles for all the transports
113 belonging to the class
114 .Fa nettype .
115 .Fa nettype
116 defines a class of transports which can be used
117 for a particular application.
118 The transports are tried in left to right order in
119 .Ev NETPATH
120 variable or in top to bottom order in the netconfig database.
122 .Fa nettype
124 .Dv NULL ,
125 it defaults to
126 .Dv netpath .
128 .Fn svc_create
129 registers itself with the rpcbind
130 service (see
131 .Xr rpcbind 8 ) .
132 .Fa dispatch
133 is called when there is a remote procedure call for the given
134 .Fa prognum
136 .Fa versnum ;
137 this requires calling
138 .Fn svc_run
139 (see
140 .Fn svc_run
142 .Xr rpc_svc_reg 3 ) .
144 .Fn svc_create
145 succeeds, it returns the number of server
146 handles it created,
147 otherwise it returns 0 and an error message is logged.
149 .It Fn svc_destroy
150 A function macro that destroys the RPC
151 service handle
152 .Fa xprt .
153 Destruction usually involves deallocation
154 of private data structures,
155 including
156 .Fa xprt
157 itself.
158 Use of
159 .Fa xprt
160 is undefined after calling this routine.
162 .It Fn svc_dg_create
163 This routine creates a connectionless RPC
164 service handle, and returns a pointer to it.
165 This routine returns
166 .Dv NULL
167 if it fails, and an error message is logged.
168 .Fa sendsz
170 .Fa recvsz
171 are parameters used to specify the size of the buffers.
172 If they are 0, suitable defaults are chosen.
173 The file descriptor
174 .Fa fildes
175 should be open and bound.
176 The server is not registered with
177 .Xr rpcbind 8 .
178 .Em Warning :
179 since connectionless-based RPC
180 messages can only hold limited amount of encoded data,
181 this transport cannot be used for procedures
182 that take large arguments or return huge results.
184 .It Fn svc_fd_create
185 This routine creates a service on top of an open and bound file descriptor,
186 and returns the handle to it.
187 Typically, this descriptor is a connected file descriptor for a
188 connection-oriented transport.
189 .Fa sendsz
191 .Fa recvsz
192 indicate sizes for the send and receive buffers.
193 If they are 0, reasonable defaults are chosen.
194 This routine returns
195 .Dv NULL
196 if it fails, and an error message is logged.
198 .It Fn svc_raw_create
199 This routine creates an RPC
200 service handle and returns a pointer to it.
201 The transport is really a buffer within the process's
202 address space, so the corresponding RPC
203 client should live in the same address space;
204 (see
205 .Fn clnt_raw_create
207 .Xr rpc_clnt_create 3 ) .
208 This routine allows simulation of RPC and acquisition of
209 RPC overheads (such as round trip times),
210 without any kernel and networking interference.
211 This routine returns
212 .Dv NULL
213 if it fails, and an error message is logged.
214 .Em Note :
215 .Fn svc_run
216 should not be called when the raw interface is being used.
218 .It Fn svc_tli_create
219 This routine creates an RPC
220 server handle, and returns a pointer to it.
221 .Fa fildes
222 is the file descriptor on which the service is listening.
224 .Fa fildes
226 .Dv RPC_ANYFD ,
227 it opens a file descriptor on the transport specified by
228 .Fa netconf .
229 If the file descriptor is unbound and
230 .Fa bindaddr
231 is non-null
232 .Fa fildes
233 is bound to the address specified by
234 .Fa bindaddr ,
235 otherwise
236 .Fa fildes
237 is bound to a default address chosen by the transport.
239 Note: the
240 .Vt t_bind
241 structure comes from the TLI/XTI SysV interface, which
243 does not use.
244 The structure is defined in
245 .In rpc/types.h
246 for compatibility as:
247 .Bd -literal
248 struct t_bind {
249     struct netbuf addr; /* network address, see rpc(3) */
250     unsigned int  qlen; /* queue length (for listen(2)) */
254 In the case where the default address is chosen,
255 the number of outstanding connect requests is set to 8
256 for connection-oriented transports.
257 The user may specify the size of the send and receive buffers
258 with the parameters
259 .Fa sendsz
261 .Fa recvsz ;
262 values of 0 choose suitable defaults.
263 This routine returns
264 .Dv NULL
265 if it fails,
266 and an error message is logged.
267 The server is not registered with the
268 .Xr rpcbind 8
269 service.
271 .It Fn svc_tp_create
272 .Fn svc_tp_create
273 creates a server handle for the network
274 specified by
275 .Fa netconf ,
276 and registers itself with the rpcbind service.
277 .Fa dispatch
278 is called when there is a remote procedure call
279 for the given
280 .Fa prognum
282 .Fa versnum ;
283 this requires calling
284 .Fn svc_run .
285 .Fn svc_tp_create
286 returns the service handle if it succeeds,
287 otherwise a
288 .Dv NULL
289 is returned and an error message is logged.
291 .It Fn svc_vc_create
292 This routine creates a connection-oriented RPC
293 service and returns a pointer to it.
294 This routine returns
295 .Dv NULL
296 if it fails, and an error message is logged.
297 The users may specify the size of the send and receive buffers
298 with the parameters
299 .Fa sendsz
301 .Fa recvsz ;
302 values of 0 choose suitable defaults.
303 The file descriptor
304 .Fa fildes
305 should be open and bound.
306 The server is not registered with the
307 .Xr rpcbind 8
308 service.
310 .Sh SEE ALSO
311 .Xr rpc 3 ,
312 .Xr rpc_svc_calls 3 ,
313 .Xr rpc_svc_err 3 ,
314 .Xr rpc_svc_reg 3 ,
315 .Xr rpcbind 8