xref: /illumos-gate/usr/src/uts/common/rpc/svc.h (revision e810a9826bad969938df088ba7a805cebd203193)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 /* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */
26 /* All Rights Reserved */
27 /*
28  * Portions of this source code were derived from Berkeley
29  * 4.3 BSD under license from the Regents of the University of
30  * California.
31  */
32 
33 /*
34  * svc.h, Server-side remote procedure call interface.
35  */
36 
37 #ifndef	_RPC_SVC_H
38 #define	_RPC_SVC_H
39 
40 #pragma ident	"%Z%%M%	%I%	%E% SMI"
41 
42 #include <rpc/rpc_com.h>
43 #include <rpc/rpc_msg.h>
44 #include <sys/tihdr.h>
45 #include <sys/poll.h>
46 #include <sys/tsol/label.h>
47 
48 #ifdef	_KERNEL
49 #include <rpc/svc_auth.h>
50 #include <sys/callb.h>
51 #endif	/* _KERNEL */
52 
53 /*
54  * This interface must manage two items concerning remote procedure calling:
55  *
56  * 1) An arbitrary number of transport connections upon which rpc requests
57  * are received. They are created and registered by routines in svc_generic.c,
58  * svc_vc.c and svc_dg.c; they in turn call xprt_register and
59  * xprt_unregister.
60  *
61  * 2) An arbitrary number of locally registered services.  Services are
62  * described by the following four data: program number, version number,
63  * "service dispatch" function, a transport handle, and a boolean that
64  * indicates whether or not the exported program should be registered with a
65  * local binder service;  if true the program's number and version and the
66  * address from the transport handle are registered with the binder.
67  * These data are registered with rpcbind via svc_reg().
68  *
69  * A service's dispatch function is called whenever an rpc request comes in
70  * on a transport.  The request's program and version numbers must match
71  * those of the registered service.  The dispatch function is passed two
72  * parameters, struct svc_req * and SVCXPRT *, defined below.
73  */
74 
75 #ifdef __cplusplus
76 extern "C" {
77 #endif
78 
79 /*
80  * Server-side transport handles.
81  * The actual type definitions are below.
82  */
83 #ifdef	_KERNEL
84 typedef struct __svcmasterxprt	SVCMASTERXPRT;	/* Master transport handle */
85 typedef struct __svcxprt	SVCXPRT;	/* Per-thread clone handle */
86 typedef	struct __svcpool	SVCPOOL;	/* Kernel thread pool	   */
87 #else	/* _KERNEL */
88 typedef struct __svcxprt	SVCXPRT;	/* Server transport handle */
89 #endif	/* _KERNEL */
90 
91 /*
92  *  Prototype of error handler callback
93  */
94 #ifndef _KERNEL
95 typedef void (*svc_errorhandler_t)(const SVCXPRT* svc, const bool_t isAConn);
96 #endif
97 
98 /*
99  * Service request.
100  *
101  * PSARC 2003/523 Contract Private Interface
102  * svc_req
103  * Changes must be reviewed by Solaris File Sharing
104  * Changes must be communicated to contract-2003-523@sun.com
105  */
106 struct svc_req {
107 	rpcprog_t	rq_prog;	/* service program number */
108 	rpcvers_t	rq_vers;	/* service protocol version */
109 	rpcproc_t	rq_proc;	/* the desired procedure */
110 	struct opaque_auth rq_cred;	/* raw creds from the wire */
111 	caddr_t		rq_clntcred;	/* read only cooked cred */
112 	SVCXPRT		*rq_xprt;	/* associated transport */
113 	bslabel_t	*rq_label;	/* TSOL label of the request */
114 };
115 
116 #ifdef _KERNEL
117 struct dupreq {
118 	uint32_t	dr_xid;
119 	rpcproc_t	dr_proc;
120 	rpcvers_t	dr_vers;
121 	rpcprog_t	dr_prog;
122 	struct netbuf	dr_addr;
123 	struct netbuf	dr_resp;
124 	void		(*dr_resfree)();
125 	int		dr_status;
126 	struct dupreq	*dr_next;
127 	struct dupreq	*dr_chain;
128 };
129 
130 /*
131  * States of requests for duplicate request caching.
132  */
133 #define	DUP_NEW			0x00	/* new entry */
134 #define	DUP_INPROGRESS		0x01	/* request already going */
135 #define	DUP_DONE		0x02	/* request done */
136 #define	DUP_DROP		0x03	/* request dropped */
137 #define	DUP_ERROR		0x04	/* error in dup req cache */
138 
139 /*
140  * Prototype for a service dispatch routine.
141  */
142 typedef void (SVC_DISPATCH)(struct svc_req *, SVCXPRT *);
143 
144 /*
145  * The service provider callout.
146  * Each entry identifies a dispatch routine to be called
147  * for a given RPC program number and a version fitting
148  * into the registered range.
149  */
150 typedef struct {
151 	rpcprog_t	sc_prog;	/* RPC Program number */
152 	rpcvers_t	sc_versmin;	/* Min version number */
153 	rpcvers_t	sc_versmax;	/* Max version number */
154 	SVC_DISPATCH	*sc_dispatch;	/* Dispatch routine   */
155 } SVC_CALLOUT;
156 
157 /*
158  * Table of service provider `callouts' for an RPC
159  * transport handle. If sct_free is TRUE then transport
160  * destructor is supposed to deallocate this table.
161  */
162 typedef struct {
163 	size_t		sct_size;	/* Number of entries  */
164 	bool_t		sct_free;	/* Deallocate if true */
165 	SVC_CALLOUT	*sct_sc;	/* Callout entries    */
166 } SVC_CALLOUT_TABLE;
167 
168 struct svc_ops {
169 	bool_t	(*xp_recv)(SVCXPRT *, mblk_t *, struct rpc_msg *);
170 		/* receive incoming requests */
171 	bool_t	(*xp_getargs)(SVCXPRT *, xdrproc_t, caddr_t);
172 		/* get arguments */
173 	bool_t	(*xp_reply)(SVCXPRT *, struct rpc_msg *);
174 		/* send reply */
175 	bool_t	(*xp_freeargs)(SVCXPRT *, xdrproc_t, caddr_t);
176 		/* free mem allocated for args */
177 	void	(*xp_destroy)(SVCMASTERXPRT *);
178 		/* destroy this struct */
179 	int	(*xp_dup)(struct svc_req *, caddr_t, int,
180 				struct dupreq **, bool_t *);
181 		/* check for dup */
182 	void	(*xp_dupdone)(struct dupreq *, caddr_t, void (*)(), int, int);
183 		/* mark dup entry as completed */
184 	int32_t *(*xp_getres)(SVCXPRT *, int);
185 		/* get pointer to response buffer */
186 	void	(*xp_freeres)(SVCXPRT *);
187 		/* destroy pre-serialized response */
188 	void	(*xp_clone_destroy)(SVCXPRT *);
189 		/* destroy a clone xprt */
190 	void	(*xp_start)(SVCMASTERXPRT *);
191 		/* `ready-to-receive' */
192 };
193 #else	/* _KERNEL */
194 /*
195  *	Service control requests
196  */
197 #define	SVCGET_VERSQUIET	1
198 #define	SVCSET_VERSQUIET	2
199 #define	SVCGET_XID		4
200 #define	SVCSET_KEEPALIVE	5
201 #define	SVCSET_CONNMAXREC	6
202 #define	SVCGET_CONNMAXREC	7
203 #define	SVCGET_RECVERRHANDLER	8
204 #define	SVCSET_RECVERRHANDLER	9
205 
206 enum xprt_stat {
207 	XPRT_DIED,
208 	XPRT_MOREREQS,
209 	XPRT_IDLE
210 };
211 
212 struct xp_ops {
213 #ifdef	__STDC__
214 	bool_t	(*xp_recv)(SVCXPRT *, struct rpc_msg *);
215 		/* receive incoming requests */
216 	enum xprt_stat (*xp_stat)(SVCXPRT *);
217 		/* get transport status */
218 	bool_t	(*xp_getargs)(SVCXPRT *, xdrproc_t, caddr_t);
219 		/* get arguments */
220 	bool_t	(*xp_reply)(SVCXPRT *,	struct rpc_msg *);
221 		/* send reply */
222 	bool_t	(*xp_freeargs)(SVCXPRT *, xdrproc_t, caddr_t);
223 		/* free mem allocated for args */
224 	void	(*xp_destroy)(SVCXPRT *);
225 		/* destroy this struct */
226 	bool_t	(*xp_control)(SVCXPRT *, const uint_t,	void *);
227 		/* catch-all control function */
228 #else	/* __STDC__ */
229 	bool_t	(*xp_recv)(); /* receive incoming requests */
230 	enum xprt_stat (*xp_stat)(); /* get transport status */
231 	bool_t	(*xp_getargs)(); /* get arguments */
232 	bool_t	(*xp_reply)(); /* send reply */
233 	bool_t	(*xp_freeargs)(); /* free mem allocated for args */
234 	void	(*xp_destroy)(); /* destroy this struct */
235 	bool_t	(*xp_control)(); /* catch-all control function */
236 #endif	/* __STDC__ */
237 };
238 #endif	/* _KERNEL */
239 
240 #ifdef	_KERNEL
241 /*
242  * SVCPOOL
243  * Kernel RPC server-side thread pool structure.
244  */
245 typedef struct __svcxprt_qnode __SVCXPRT_QNODE;	/* Defined in svc.c */
246 
247 struct __svcpool {
248 	/*
249 	 * Thread pool variables.
250 	 *
251 	 * The pool's thread lock p_thread_lock protects:
252 	 * - p_threads, p_detached_threads, p_reserved_threads and p_closing
253 	 * The pool's request lock protects:
254 	 * - p_asleep, p_drowsy, p_reqs, p_walkers, p_req_cv.
255 	 * The following fields are `initialized constants':
256 	 * - p_id, p_stksize, p_timeout.
257 	 * Access to p_next and p_prev is protected by the pool
258 	 * list lock.
259 	 */
260 	SVCPOOL		*p_next;		/* Next pool in the list  */
261 	SVCPOOL		*p_prev;		/* Prev pool in the list  */
262 	int		p_id;			/* Pool id		  */
263 	int		p_threads;		/* Non-detached threads	  */
264 	int		p_detached_threads;	/* Detached threads	  */
265 	int		p_maxthreads;		/* Max threads in the pool */
266 	int		p_redline;		/* `Redline' for the pool */
267 	int		p_reserved_threads;	/* Reserved threads	  */
268 	kmutex_t	p_thread_lock;		/* Thread lock		  */
269 	int		p_asleep;		/* Asleep threads	  */
270 	int		p_drowsy;		/* Drowsy flag		  */
271 	kcondvar_t 	p_req_cv;		/* svc_poll() sleep var.  */
272 	clock_t		p_timeout;		/* svc_poll() timeout	  */
273 	kmutex_t	p_req_lock;		/* Request lock		  */
274 	int		p_reqs;			/* Pending requests	  */
275 	int		p_walkers;		/* Walking threads	  */
276 	int		p_max_same_xprt;	/* Max reqs from the xprt */
277 	int		p_stksize;		/* Stack size for svc_run */
278 	bool_t		p_closing : 1;		/* Pool is closing	  */
279 
280 	/*
281 	 * Thread creator variables.
282 	 * The `creator signaled' flag is turned on when a signal is send
283 	 * to the creator thread (to create a new service thread). The
284 	 * creator clears when the thread is created. The protocol is not
285 	 * to signal the creator thread when the flag is on. However,
286 	 * a new thread should signal the creator if there are more
287 	 * requests in the queue.
288 	 *
289 	 * When the pool is closing (ie it has been already unregistered from
290 	 * the pool list) the last thread on the last transport should turn
291 	 * the p_creator_exit flag on. This tells the creator thread to
292 	 * free the pool structure and exit.
293 	 */
294 	bool_t		p_creator_signaled : 1;	/* Create requested flag  */
295 	bool_t		p_creator_exit : 1;	/* If true creator exits  */
296 	kcondvar_t	p_creator_cv;		/* Creator cond. variable */
297 	kmutex_t	p_creator_lock;		/* Creator lock		  */
298 
299 	/*
300 	 * Doubly linked list containing `registered' master transport handles.
301 	 * There is no special structure for a list node. Instead the
302 	 * SVCMASTERXPRT structure has the xp_next and xp_prev fields.
303 	 *
304 	 * The p_lrwlock protects access to xprt->xp_next and xprt->xp_prev.
305 	 * A service thread should also acquire a reader lock before accessing
306 	 * any transports it is no longer linked to (to prevent them from
307 	 * being destroyed).
308 	 *
309 	 * The list lock governs also the `pool is closing' flag.
310 	 */
311 	size_t		p_lcount;		/* Current count	  */
312 	SVCMASTERXPRT	*p_lhead;		/* List head		  */
313 	krwlock_t	p_lrwlock;		/* R/W lock		  */
314 
315 	/*
316 	 * Circular linked list for the `xprt-ready' queue (FIFO).
317 	 * Must be initialized with svc_xprt_qinit() before it is used.
318 	 *
319 	 * The writer's end is protected by the pool's request lock
320 	 * (pool->p_req_lock). The reader's end is protected by q_end_lock.
321 	 *
322 	 * When the queue is full the p_qoverflow flag is raised. It stays
323 	 * on until all the pending request are drained.
324 	 */
325 	size_t		p_qsize;		/* Number of queue nodes  */
326 	int		p_qoverflow : 1;	/* Overflow flag	  */
327 	__SVCXPRT_QNODE *p_qbody;		/* Queue body (array)	  */
328 	__SVCXPRT_QNODE *p_qtop;		/* Writer's end of FIFO   */
329 	__SVCXPRT_QNODE *p_qend;		/* Reader's end of FIFO	  */
330 	kmutex_t	p_qend_lock;		/* Reader's end lock	  */
331 
332 	/*
333 	 * Userspace thread creator variables.
334 	 * Thread creation is actually done in userland, via a thread
335 	 * that is parked in the kernel. When that thread is signaled,
336 	 * it returns back down to the daemon from whence it came and
337 	 * does the lwp create.
338 	 *
339 	 * A parallel "creator" thread runs in the kernel. That is the
340 	 * thread that will signal for the user thread to return to
341 	 * userland and do its work.
342 	 *
343 	 * Since the thread doesn't always exist (there could be a race
344 	 * if two threads are created in rapid succession), we set
345 	 * p_signal_create_thread to FALSE when we're ready to accept work.
346 	 *
347 	 * p_user_exit is set to true when the service pool is about
348 	 * to close. This is done so that the user creation thread
349 	 * can be informed and cleanup any userland state.
350 	 */
351 
352 	bool_t		p_signal_create_thread : 1; /* Create requested flag  */
353 	bool_t		p_user_exit : 1;	/* If true creator exits  */
354 	bool_t		p_user_waiting : 1;	/* Thread waiting for work */
355 	kcondvar_t	p_user_cv;		/* Creator cond. variable */
356 	kmutex_t	p_user_lock;		/* Creator lock		  */
357 	void		(*p_offline)();		/* callout for unregister */
358 	void		(*p_shutdown)();	/* callout for shutdown */
359 };
360 
361 /*
362  * Server side transport handle (SVCMASTERXPRT).
363  * xprt->xp_req_lock governs the following fields in xprt:
364  *		xp_req_head, xp_req_tail.
365  * xprt->xp_thread_lock governs the following fields in xprt:
366  *		xp_threads, xp_detached_threads.
367  *
368  * xp_req_tail is only valid if xp_req_head is non-NULL
369  *
370  * The xp_threads count is the number of attached threads.  These threads
371  * are able to handle new requests, and it is expected that they will not
372  * block for a very long time handling a given request. The
373  * xp_detached_threads count is the number of threads that have detached
374  * themselves from the transport. These threads can block indefinitely
375  * while handling a request.  Once they complete the request, they exit.
376  *
377  * A kernel service provider may register a callback function "closeproc"
378  * for a transport.  When the transport is closing the last exiting attached
379  * thread - xp_threads goes to zero - it calls the callback function, passing
380  * it a reference to the transport.  This call is made with xp_thread_lock
381  * held, so any cleanup bookkeeping it does should be done quickly.
382  *
383  * When the transport is closing the last exiting thread is supposed
384  * to destroy/free the data structure.
385  */
386 typedef struct __svcxprt_common {
387 	struct file	*xpc_fp;
388 	struct svc_ops	*xpc_ops;
389 	queue_t		*xpc_wq;	/* queue to write onto		*/
390 	cred_t		*xpc_cred;	/* cached cred for server to use */
391 	int32_t		xpc_type;	/* transport type		*/
392 	int		xpc_msg_size;	/* TSDU or TIDU size		*/
393 	struct netbuf	xpc_rtaddr;	/* remote transport address	*/
394 	struct netbuf	xpc_lcladdr;	/* local transport address	*/
395 	SVC_CALLOUT_TABLE *xpc_sct;
396 } __SVCXPRT_COMMON;
397 
398 #define	xp_fp		xp_xpc.xpc_fp
399 #define	xp_ops		xp_xpc.xpc_ops
400 #define	xp_wq		xp_xpc.xpc_wq
401 #define	xp_cred		xp_xpc.xpc_cred
402 #define	xp_type		xp_xpc.xpc_type
403 #define	xp_msg_size	xp_xpc.xpc_msg_size
404 #define	xp_rtaddr	xp_xpc.xpc_rtaddr
405 #define	xp_lcladdr	xp_xpc.xpc_lcladdr
406 #define	xp_sct		xp_xpc.xpc_sct
407 
408 struct __svcmasterxprt {
409 	SVCMASTERXPRT 	*xp_next;	/* Next transport in the list	*/
410 	SVCMASTERXPRT 	*xp_prev;	/* Prev transport in the list	*/
411 	__SVCXPRT_COMMON xp_xpc;	/* Fields common with the clone	*/
412 	SVCPOOL		*xp_pool;	/* Pointer to the pool		*/
413 	mblk_t		*xp_req_head;	/* Request queue head		*/
414 	mblk_t		*xp_req_tail;	/* Request queue tail		*/
415 	kmutex_t	xp_req_lock;	/* Request lock			*/
416 	int		xp_threads;	/* Current num. of attached threads */
417 	int		xp_detached_threads; /* num. of detached threads */
418 	kmutex_t	xp_thread_lock;	/* Thread count lock		*/
419 	void		(*xp_closeproc)(const SVCMASTERXPRT *);
420 					/* optional; see comments above	*/
421 	char		*xp_netid;	/* network token		*/
422 	struct netbuf	xp_addrmask;	/* address mask			*/
423 
424 	caddr_t		xp_p2;		/* private: for use by svc ops  */
425 };
426 
427 /*
428  * Service thread `clone' transport handle (SVCXPRT)
429  *
430  * PSARC 2003/523 Contract Private Interface
431  * SVCXPRT
432  * Changes must be reviewed by Solaris File Sharing
433  * Changes must be communicated to contract-2003-523@sun.com
434  *
435  * The xp_p2buf buffer is used as the storage for a transport type
436  * specific structure. It is private for the svc ops for a given
437  * transport type.
438  */
439 
440 #define	SVC_P2LEN   64
441 
442 struct __svcxprt {
443 	__SVCXPRT_COMMON xp_xpc;
444 	SVCMASTERXPRT	*xp_master;	/* back ptr to master		*/
445 
446 	/* The following fileds are on a per-thread basis */
447 	callb_cpr_t	*xp_cprp;	/* unused padding for Contract	*/
448 	bool_t		xp_reserved : 1; /* is thread reserved?		*/
449 	bool_t		xp_detached : 1; /* is thread detached?		*/
450 	int		xp_same_xprt;	/* Reqs from the same xprt	*/
451 
452 	/* The following fields are used on a per-request basis */
453 	struct opaque_auth xp_verf;	/* raw response verifier	*/
454 	SVCAUTH		xp_auth;	/* auth flavor of current req	*/
455 	void		*xp_cookie;	/* a cookie			*/
456 	uint32_t	xp_xid;		/* id				*/
457 	XDR		xp_xdrin;	/* input xdr stream		*/
458 	XDR		xp_xdrout;	/* output xdr stream		*/
459 
460 	/* Private for svc ops */
461 	char		xp_p2buf[SVC_P2LEN]; /* udp_data or cots_data_t */
462 						/* or clone_rdma_data_t */
463 };
464 #else	/* _KERNEL */
465 struct __svcxprt {
466 	int		xp_fd;
467 #define	xp_sock		xp_fd
468 	ushort_t	xp_port;
469 	/*
470 	 * associated port number.
471 	 * Obsolete, but still used to
472 	 * specify whether rendezvouser
473 	 * or normal connection
474 	 */
475 	struct	xp_ops	*xp_ops;
476 	int		xp_addrlen;	/* length of remote addr. Obsoleted */
477 	char		*xp_tp;		/* transport provider device name */
478 	char		*xp_netid;	/* network token */
479 	struct netbuf	xp_ltaddr;	/* local transport address */
480 	struct netbuf	xp_rtaddr;	/* remote transport address */
481 	char		xp_raddr[16];	/* remote address. Now obsoleted */
482 	struct opaque_auth xp_verf;	/* raw response verifier */
483 	caddr_t		xp_p1;		/* private: for use by svc ops */
484 	caddr_t		xp_p2;		/* private: for use by svc ops */
485 	caddr_t		xp_p3;		/* private: for use by svc lib */
486 	int		xp_type;	/* transport type */
487 	/*
488 	 * callback on client death
489 	 * First parameter is the current structure,
490 	 * Second parameter :
491 	 *	- FALSE for the service listener
492 	 *	- TRUE for a real connected socket
493 	 */
494 	svc_errorhandler_t xp_closeclnt;
495 };
496 #endif	/* _KERNEL */
497 
498 /*
499  *  Approved way of getting address of caller,
500  *  address mask, and netid of transport.
501  */
502 #define	svc_getrpccaller(x) (&(x)->xp_rtaddr)
503 #ifdef _KERNEL
504 #define	svc_getcaller(x) (&(x)->xp_rtaddr.buf)
505 #define	svc_getaddrmask(x) (&(x)->xp_master->xp_addrmask)
506 #define	svc_getnetid(x) ((x)->xp_master->xp_netid)
507 #endif	/* _KERNEL */
508 
509 /*
510  * Operations defined on an SVCXPRT handle
511  */
512 
513 #ifdef	_KERNEL
514 #define	SVC_RECV(clone_xprt, mp, msg) \
515 	(*(clone_xprt)->xp_ops->xp_recv)((clone_xprt), (mp), (msg))
516 
517 /*
518  * PSARC 2003/523 Contract Private Interface
519  * SVC_GETARGS
520  * Changes must be reviewed by Solaris File Sharing
521  * Changes must be communicated to contract-2003-523@sun.com
522  */
523 #define	SVC_GETARGS(clone_xprt, xargs, argsp) \
524 	(*(clone_xprt)->xp_ops->xp_getargs)((clone_xprt), (xargs), (argsp))
525 
526 #define	SVC_REPLY(clone_xprt, msg) \
527 	(*(clone_xprt)->xp_ops->xp_reply) ((clone_xprt), (msg))
528 
529 #define	SVC_FREEARGS(clone_xprt, xargs, argsp) \
530 	(*(clone_xprt)->xp_ops->xp_freeargs)((clone_xprt), (xargs), (argsp))
531 
532 #define	SVC_GETRES(clone_xprt, size) \
533 	(*(clone_xprt)->xp_ops->xp_getres)((clone_xprt), (size))
534 
535 #define	SVC_FREERES(clone_xprt)	\
536 	(*(clone_xprt)->xp_ops->xp_freeres)(clone_xprt)
537 
538 #define	SVC_DESTROY(xprt) \
539 	(*(xprt)->xp_ops->xp_destroy)(xprt)
540 
541 /*
542  * PSARC 2003/523 Contract Private Interfaces
543  * SVC_DUP, SVC_DUPDONE, SVC_DUP_EXT, SVC_DUPDONE_EXT
544  * Changes must be reviewed by Solaris File Sharing
545  * Changes must be communicated to contract-2003-523@sun.com
546  *
547  * SVC_DUP and SVC_DUPDONE are defined here for backward compatibility.
548  */
549 #define	SVC_DUP_EXT(clone_xprt, req, res, size, drpp, dupcachedp) \
550 	(*(clone_xprt)->xp_ops->xp_dup)(req, res, size, drpp, dupcachedp)
551 
552 #define	SVC_DUPDONE_EXT(clone_xprt, dr, res, resfree, size, status) \
553 	(*(clone_xprt)->xp_ops->xp_dupdone)(dr, res, resfree, size, status)
554 
555 #define	SVC_DUP(clone_xprt, req, res, size, drpp) \
556 	(*(clone_xprt)->xp_ops->xp_dup)(req, res, size, drpp, NULL)
557 
558 #define	SVC_DUPDONE(clone_xprt, dr, res, size, status) \
559 	(*(clone_xprt)->xp_ops->xp_dupdone)(dr, res, NULL, size, status)
560 
561 #define	SVC_CLONE_DESTROY(clone_xprt) \
562 	(*(clone_xprt)->xp_ops->xp_clone_destroy)(clone_xprt)
563 
564 
565 #define	SVC_START(xprt) \
566 	(*(xprt)->xp_ops->xp_start)(xprt)
567 
568 #else	/* _KERNEL */
569 
570 #define	SVC_RECV(xprt, msg) \
571 	(*(xprt)->xp_ops->xp_recv)((xprt), (msg))
572 #define	svc_recv(xprt, msg) \
573 	(*(xprt)->xp_ops->xp_recv)((xprt), (msg))
574 
575 #define	SVC_STAT(xprt) \
576 	(*(xprt)->xp_ops->xp_stat)(xprt)
577 #define	svc_stat(xprt) \
578 	(*(xprt)->xp_ops->xp_stat)(xprt)
579 
580 #define	SVC_GETARGS(xprt, xargs, argsp) \
581 	(*(xprt)->xp_ops->xp_getargs)((xprt), (xargs), (argsp))
582 #define	svc_getargs(xprt, xargs, argsp)	\
583 	(*(xprt)->xp_ops->xp_getargs)((xprt), (xargs), (argsp))
584 
585 #define	SVC_REPLY(xprt, msg) \
586 	(*(xprt)->xp_ops->xp_reply) ((xprt), (msg))
587 #define	svc_reply(xprt, msg) \
588 	(*(xprt)->xp_ops->xp_reply) ((xprt), (msg))
589 
590 #define	SVC_FREEARGS(xprt, xargs, argsp) \
591 	(*(xprt)->xp_ops->xp_freeargs)((xprt), (xargs), (argsp))
592 #define	svc_freeargs(xprt, xargs, argsp) \
593 	(*(xprt)->xp_ops->xp_freeargs)((xprt), (xargs), (argsp))
594 
595 #define	SVC_GETRES(xprt, size) \
596 	(*(xprt)->xp_ops->xp_getres)((xprt), (size))
597 #define	svc_getres(xprt, size) \
598 	(*(xprt)->xp_ops->xp_getres)((xprt), (size))
599 
600 #define	SVC_FREERES(xprt) \
601 	(*(xprt)->xp_ops->xp_freeres)(xprt)
602 #define	svc_freeres(xprt) \
603 	(*(xprt)->xp_ops->xp_freeres)(xprt)
604 
605 #define	SVC_DESTROY(xprt) \
606 	(*(xprt)->xp_ops->xp_destroy)(xprt)
607 #define	svc_destroy(xprt) \
608 	(*(xprt)->xp_ops->xp_destroy)(xprt)
609 
610 /*
611  * PSARC 2003/523 Contract Private Interface
612  * SVC_CONTROL
613  * Changes must be reviewed by Solaris File Sharing
614  * Changes must be communicated to contract-2003-523@sun.com
615  */
616 #define	SVC_CONTROL(xprt, rq, in) \
617 	(*(xprt)->xp_ops->xp_control)((xprt), (rq), (in))
618 #endif	/* _KERNEL */
619 
620 /*
621  * Pool id's reserved for NFS, NLM, and the NFSv4 callback program.
622  */
623 #define	NFS_SVCPOOL_ID		0x01
624 #define	NLM_SVCPOOL_ID		0x02
625 #define	NFS_CB_SVCPOOL_ID	0x03
626 #define	RDC_SVCPOOL_ID		0x05	/* SNDR, PSARC 2001/699 */
627 
628 struct svcpool_args {
629 	uint32_t	id;		/* Pool id */
630 	uint32_t	maxthreads;	/* Max threads in the pool */
631 	uint32_t	redline;	/* `Redline' for the pool */
632 	uint32_t	qsize;		/* `xprt-ready' queue size */
633 	uint32_t	timeout;	/* svc_poll() timeout */
634 	uint32_t	stksize;	/* svc_run() stack size */
635 	uint32_t	max_same_xprt;	/* Max reqs from the same xprt */
636 };
637 
638 
639 #ifdef	_KERNEL
640 /*
641  * Transport registration and thread pool creation.
642  */
643 extern int	svc_xprt_register(SVCMASTERXPRT *, int);
644 extern void	svc_xprt_unregister(SVCMASTERXPRT *);
645 extern int	svc_pool_create(struct svcpool_args *);
646 extern int	svc_wait(int);
647 extern int	svc_do_run(int);
648 #define	SVCPSET_SHUTDOWN_PROC	1
649 #define	SVCPSET_UNREGISTER_PROC	2
650 extern int	svc_pool_control(int, int, void *);
651 #else	/* _KERNEL */
652 #ifdef	__STDC__
653 extern bool_t	rpc_reg(const rpcprog_t, const rpcvers_t, const rpcproc_t,
654 			char *(*)(char *), const xdrproc_t, const xdrproc_t,
655 			const char *);
656 
657 /*
658  * Service registration
659  *
660  * svc_reg(xprt, prog, vers, dispatch, nconf)
661  *	const SVCXPRT *xprt;
662  *	const rpcprog_t prog;
663  *	const rpcvers_t vers;
664  *	const void (*dispatch)();
665  *	const struct netconfig *nconf;
666  */
667 extern bool_t	svc_reg(const SVCXPRT *, const rpcprog_t, const rpcvers_t,
668 			void (*)(struct svc_req *, SVCXPRT *),
669 			const struct netconfig *);
670 
671 /*
672  * Service authentication registration
673  *
674  * svc_auth_reg(cred_flavor, handler)
675  *    int cred_flavor;
676  *    enum auth_stat (*handler)();
677  */
678 extern int	svc_auth_reg(int, enum auth_stat (*)());
679 
680 /*
681  * Service un-registration
682  *
683  * svc_unreg(prog, vers)
684  *	const rpcprog_t prog;
685  *	const rpcvers_t vers;
686  */
687 extern void	svc_unreg(const rpcprog_t, const rpcvers_t);
688 
689 /*
690  * Transport registration/unregistration.
691  *
692  * xprt_register(xprt)
693  *	const SVCXPRT *xprt;
694  *
695  * xprt_unregister(xprt)
696  *	const SVCXPRT *xprt;
697  */
698 extern void	xprt_register(const SVCXPRT *);
699 extern void	xprt_unregister(const SVCXPRT *);
700 #else	/* __STDC__ */
701 extern bool_t	rpc_reg();
702 extern bool_t	svc_reg();
703 extern bool_t	svc_auth_reg();
704 extern void	svc_unreg();
705 extern void	xprt_register();
706 extern void	xprt_unregister();
707 #endif /* __STDC__ */
708 #endif	/* _KERNEL */
709 
710 
711 /*
712  * When the service routine is called, it must first check to see if it
713  * knows about the procedure;  if not, it should call svcerr_noproc
714  * and return.  If so, it should deserialize its arguments via
715  * SVC_GETARGS (defined above).  If the deserialization does not work,
716  * svcerr_decode should be called followed by a return.  Successful
717  * decoding of the arguments should be followed the execution of the
718  * procedure's code and a call to svc_sendreply.
719  *
720  * Also, if the service refuses to execute the procedure due to too-
721  * weak authentication parameters, svcerr_weakauth should be called.
722  * Note: do not confuse access-control failure with weak authentication!
723  *
724  * NB: In pure implementations of rpc, the caller always waits for a reply
725  * msg.  This message is sent when svc_sendreply is called.
726  * Therefore pure service implementations should always call
727  * svc_sendreply even if the function logically returns void;  use
728  * xdr.h - xdr_void for the xdr routine.  HOWEVER, connectionful rpc allows
729  * for the abuse of pure rpc via batched calling or pipelining.  In the
730  * case of a batched call, svc_sendreply should NOT be called since
731  * this would send a return message, which is what batching tries to avoid.
732  * It is the service/protocol writer's responsibility to know which calls are
733  * batched and which are not.  Warning: responding to batch calls may
734  * deadlock the caller and server processes!
735  */
736 #ifdef	__STDC__
737 extern bool_t	svc_sendreply(const SVCXPRT *, const xdrproc_t,	const caddr_t);
738 extern void	svcerr_decode(const SVCXPRT *);
739 extern void	svcerr_weakauth(const SVCXPRT *);
740 extern void	svcerr_noproc(const SVCXPRT *);
741 extern void	svcerr_progvers(const SVCXPRT *, const rpcvers_t,
742     const rpcvers_t);
743 extern void	svcerr_auth(const SVCXPRT *, const enum auth_stat);
744 extern void	svcerr_noprog(const SVCXPRT *);
745 extern void	svcerr_systemerr(const SVCXPRT *);
746 extern void	svcerr_badcred(const SVCXPRT *);
747 #else	/* __STDC__ */
748 extern bool_t	svc_sendreply();
749 extern void	svcerr_decode();
750 extern void	svcerr_weakauth();
751 extern void	svcerr_noproc();
752 extern void	svcerr_progvers();
753 extern void	svcerr_auth();
754 extern void	svcerr_noprog();
755 extern void	svcerr_systemerr();
756 extern void	svcerr_badcred();
757 #endif	/* __STDC__ */
758 
759 #ifdef	_KERNEL
760 /*
761  * Kernel RPC functions.
762  */
763 extern void	svc_init(void);
764 extern void	svc_cots_init(void);
765 extern void	svc_clts_init(void);
766 extern void	mt_kstat_init(void);
767 extern void	mt_kstat_fini(void);
768 extern int	svc_tli_kcreate(struct file *, uint_t, char *,
769 				struct netbuf *, SVCMASTERXPRT **,
770 				SVC_CALLOUT_TABLE *,
771 				void (*closeproc)(const SVCMASTERXPRT *),
772 				int, bool_t);
773 extern int	svc_clts_kcreate(struct file *, uint_t, struct T_info_ack *,
774 				SVCMASTERXPRT **);
775 extern int	svc_cots_kcreate(struct file *, uint_t, struct T_info_ack *,
776 				SVCMASTERXPRT **);
777 extern void	svc_queuereq(queue_t *, mblk_t *);
778 extern void	svc_queueclean(queue_t *);
779 extern void	svc_queueclose(queue_t *);
780 extern int	svc_reserve_thread(SVCXPRT *);
781 extern void	svc_unreserve_thread(SVCXPRT *);
782 extern callb_cpr_t *svc_detach_thread(SVCXPRT *);
783 
784 /*
785  * For RDMA based kRPC.
786  * "rdma_xprt_record" is a reference to master transport handles
787  * in kRPC thread pools. This is an easy way of tracking and shuting
788  * down rdma based kRPC transports on demand.
789  * "rdma_xprt_group" is a list of RDMA based mster transport handles
790  * or records in a kRPC thread pool.
791  */
792 typedef struct rdma_xprt_record		rdma_xprt_record_t;
793 struct rdma_xprt_record {
794 	int			rtr_type;	/* Type of rdma; IB/VI/RDDP */
795 	SVCMASTERXPRT		*rtr_xprt_ptr;	/* Ptr to master xprt handle */
796 	rdma_xprt_record_t	*rtr_next;	/* Ptr to next record */
797 };
798 
799 typedef struct {
800 	int			rtg_count;	/* Number transport records */
801 	int			rtg_poolid;	/* Pool Id for this group */
802 	rdma_xprt_record_t	*rtg_listhead;	/* Head of the records list */
803 } rdma_xprt_group_t;
804 
805 extern int	svc_rdma_kcreate(char *, SVC_CALLOUT_TABLE *, int,
806 			rdma_xprt_group_t *);
807 extern void	svc_rdma_kstop(SVCMASTERXPRT *);
808 extern void	svc_rdma_kdestroy(SVCMASTERXPRT *);
809 extern void	rdma_stop(rdma_xprt_group_t);
810 
811 /*
812  * GSS cleanup method.
813  */
814 extern void	rpc_gss_cleanup(SVCXPRT *);
815 #else	/* _KERNEL */
816 /*
817  * Lowest level dispatching -OR- who owns this process anyway.
818  * Somebody has to wait for incoming requests and then call the correct
819  * service routine.  The routine svc_run does infinite waiting; i.e.,
820  * svc_run never returns.
821  * Since another (co-existant) package may wish to selectively wait for
822  * incoming calls or other events outside of the rpc architecture, the
823  * routine svc_getreq_poll is provided.  It must be passed pollfds, the
824  * "in-place" results of a poll call (see poll, section 2).
825  */
826 
827 /*
828  * Global keeper of rpc service descriptors in use
829  * dynamic; must be inspected before each call to select or poll
830  */
831 extern pollfd_t	*svc_pollfd;
832 extern int	svc_max_pollfd;
833 extern fd_set	svc_fdset;
834 #if !defined(_LP64) && FD_SETSIZE > 1024
835 extern fd_set	_new_svc_fdset;
836 #ifdef __PRAGMA_REDEFINE_EXTNAME
837 #pragma redefine_extname	svc_fdset	_new_svc_fdset
838 #else   /* __PRAGMA_REDEFINE_EXTNAME */
839 #define	svc_fdset	_new_svc_fdset
840 #endif  /* __PRAGMA_REDEFINE_EXTNAME */
841 #endif	/* LP64 && FD_SETSIZE > 1024 */
842 #define	svc_fds svc_fdset.fds_bits[0]	/* compatibility */
843 
844 /*
845  * A small program implemented by the svc_rpc implementation itself.
846  * Also see clnt.h for protocol numbers.
847  */
848 #ifdef __STDC__
849 extern void	svc_getreq(int);
850 extern void	svc_getreq_common(const int);
851 extern void	svc_getreqset(fd_set *); /* takes fdset instead of int */
852 extern void	svc_getreq_poll(struct pollfd *, const int);
853 extern void	svc_run(void);
854 extern void	svc_exit(void);
855 #else	/* __STDC__ */
856 extern void	rpctest_service();
857 extern void	svc_getreqset();
858 extern void	svc_getreq();
859 extern void	svc_getreq_common();
860 extern void	svc_getreqset();	 /* takes fdset instead of int */
861 extern void	svc_getreq_poll();
862 extern void	svc_run();
863 extern void	svc_exit();
864 #endif	/* __STDC__ */
865 
866 /*
867  *  Functions used to manage user file descriptors
868  */
869 typedef int svc_input_id_t;
870 typedef void (*svc_callback_t)(svc_input_id_t id, int fd,
871 				unsigned int events, void* cookie);
872 
873 #ifdef __STDC__
874 extern svc_input_id_t svc_add_input(int fd, unsigned int events,
875 				svc_callback_t user_callback,
876 				void* cookie);
877 extern int svc_remove_input(svc_input_id_t id);
878 #else	/* __STDC__ */
879 extern svc_input_id_t svc_add_input();
880 extern int	svc_remove_input();
881 #endif
882 
883 /*
884  * These are the existing service side transport implementations.
885  *
886  * Transport independent svc_create routine.
887  */
888 #ifdef __STDC__
889 extern int	svc_create(void (*)(struct svc_req *, SVCXPRT *),
890 				const rpcprog_t, const rpcvers_t,
891 				const char *);
892 	/*
893 	 * 	void (*dispatch)();		-- dispatch routine
894 	 *	const rpcprog_t prognum;	-- program number
895 	 *	const rpcvers_t versnum;	-- version number
896 	 *	const char *nettype;		-- network type
897 	 */
898 
899 /*
900  * Generic server creation routine. It takes a netconfig structure
901  * instead of a nettype.
902  */
903 extern SVCXPRT	*svc_tp_create(void (*)(struct svc_req *, SVCXPRT *),
904 				const rpcprog_t, const rpcvers_t,
905 				const struct netconfig *);
906 	/*
907 	 * void (*dispatch)();			-- dispatch routine
908 	 * const rpcprog_t prognum;		-- program number
909 	 * const rpcvers_t versnum;		-- version number
910 	 * const struct netconfig *nconf;	-- netconfig structure
911 	 */
912 
913 /*
914  * Generic TLI create routine
915  */
916 extern  SVCXPRT	*svc_tli_create(const int, const struct netconfig *,
917 				const struct t_bind *, const uint_t,
918 				const uint_t);
919 	/*
920 	 *	const int fd;			-- connection end point
921 	 *	const struct netconfig *nconf;	-- netconfig structure
922 	 *	const struct t_bind *bindaddr;	-- local bind address
923 	 *	const uint_t sendsz;		-- max sendsize
924 	 *	const uint_t recvsz;		-- max recvsize
925 	 */
926 
927 /*
928  * Connectionless and connectionful create routines.
929  */
930 extern SVCXPRT	*svc_vc_create(const int, const uint_t, const uint_t);
931 	/*
932 	 *	const int fd;			-- open connection end point
933 	 *	const uint_t sendsize;		-- max send size
934 	 *	const uint_t recvsize;		-- max recv size
935 	 */
936 
937 extern SVCXPRT	*svc_dg_create(const int, const uint_t, const uint_t);
938 	/*
939 	 * const int fd;			-- open connection
940 	 * const uint_t sendsize;		-- max send size
941 	 * const uint_t recvsize;		-- max recv size
942 	 */
943 
944 /*
945  * the routine takes any *open* TLI file
946  * descriptor as its first input and is used for open connections.
947  */
948 extern  SVCXPRT	*svc_fd_create(const int, const uint_t, const uint_t);
949 	/*
950 	 * 	const int fd;			-- open connection end point
951 	 * 	const uint_t sendsize;		-- max send size
952 	 * 	const uint_t recvsize;		-- max recv size
953 	 */
954 
955 /*
956  * Memory based rpc (for speed check and testing)
957  */
958 extern SVCXPRT	*svc_raw_create(void);
959 
960 /*
961  * Creation of service over doors transport.
962  */
963 extern SVCXPRT	*svc_door_create(void (*)(struct svc_req *, SVCXPRT *),
964 				const rpcprog_t, const rpcvers_t,
965 				const uint_t);
966 	/*
967 	 * 	void (*dispatch)();		-- dispatch routine
968 	 *	const rpcprog_t prognum;	-- program number
969 	 *	const rpcvers_t versnum;	-- version number
970 	 *	const uint_t sendsize;		-- send buffer size
971 	 */
972 
973 /*
974  * Service control interface
975  */
976 extern	bool_t	svc_control(SVCXPRT *, const uint_t, void *);
977 	/*
978 	 *	SVCXPRT *svc;			-- service to manipulate
979 	 *	const uint_t req;		-- request
980 	 *	void *info;			-- argument to request
981 	 */
982 
983 /*
984  * svc_dg_enable_cache() enables the cache on dg transports.
985  */
986 extern int svc_dg_enablecache(SVCXPRT *, const uint_t);
987 #else	/* __STDC__ */
988 extern int	svc_create();
989 extern SVCXPRT	*svc_tp_create();
990 extern SVCXPRT	*svc_tli_create();
991 extern SVCXPRT	*svc_vc_create();
992 extern SVCXPRT	*svc_dg_create();
993 extern SVCXPRT	*svc_fd_create();
994 extern SVCXPRT	*svc_raw_create();
995 extern SVCXPRT	*svc_door_create();
996 extern int svc_dg_enablecache();
997 #endif	/* __STDC__ */
998 
999 extern boolean_t is_multilevel(rpcprog_t);
1000 
1001 #ifdef	PORTMAP
1002 /* For backward compatibility */
1003 #include <rpc/svc_soc.h>
1004 #endif	/* PORTMAP */
1005 
1006 /*
1007  * For user level MT hot server functions
1008  */
1009 
1010 /*
1011  * Different MT modes
1012  */
1013 #define	RPC_SVC_MT_NONE		0	/* default, single-threaded */
1014 #define	RPC_SVC_MT_AUTO		1	/* automatic MT mode */
1015 #define	RPC_SVC_MT_USER		2	/* user MT mode */
1016 
1017 #ifdef	__STDC__
1018 extern void	svc_done(SVCXPRT *);
1019 #else
1020 extern void	svc_done();
1021 #endif	/* __STDC__ */
1022 
1023 /*
1024  * Obtaining local credentials.
1025  */
1026 typedef struct __svc_local_cred_t {
1027 	uid_t	euid;	/* effective uid */
1028 	gid_t	egid;	/* effective gid */
1029 	uid_t	ruid;	/* real uid */
1030 	gid_t	rgid;	/* real gid */
1031 	pid_t	pid;	/* caller's pid, or -1 if not available */
1032 } svc_local_cred_t;
1033 
1034 #ifdef __STDC__
1035 struct ucred_s;
1036 extern void	svc_fd_negotiate_ucred(int);
1037 extern int	svc_getcallerucred(const SVCXPRT *, struct ucred_s **);
1038 extern bool_t	svc_get_local_cred(SVCXPRT *, svc_local_cred_t *);
1039 #else
1040 extern void	svc_fd_negotiate_ucred();
1041 extern int	svc_getcallerucred();
1042 extern bool_t	svc_get_local_cred();
1043 #endif	/* __STDC__ */
1044 
1045 /*
1046  * Private interfaces and structures for user level duplicate request caching.
1047  * The interfaces and data structures are not committed and subject to
1048  * change in future releases. Currently only intended for use by automountd.
1049  */
1050 struct dupreq {
1051 	uint32_t	dr_xid;
1052 	rpcproc_t	dr_proc;
1053 	rpcvers_t	dr_vers;
1054 	rpcprog_t	dr_prog;
1055 	struct netbuf	dr_addr;
1056 	struct netbuf	dr_resp;
1057 	int		dr_status;
1058 	time_t		dr_time;
1059 	uint_t		dr_hash;
1060 	struct dupreq	*dr_next;
1061 	struct dupreq	*dr_prev;
1062 	struct dupreq	*dr_chain;
1063 	struct dupreq	*dr_prevchain;
1064 };
1065 
1066 /*
1067  * The fixedtime state is defined if we want to expand the routines to
1068  * handle and encompass fixed size caches.
1069  */
1070 #define	DUPCACHE_FIXEDTIME	0
1071 
1072 /*
1073  * States of requests for duplicate request caching.
1074  * These are the same as defined for the kernel.
1075  */
1076 #define	DUP_NEW			0x00	/* new entry */
1077 #define	DUP_INPROGRESS		0x01	/* request already going */
1078 #define	DUP_DONE		0x02	/* request done */
1079 #define	DUP_DROP		0x03	/* request dropped */
1080 #define	DUP_ERROR		0x04	/* error in dup req cache */
1081 
1082 #ifdef __STDC__
1083 extern bool_t	__svc_dupcache_init(void *, int, char **);
1084 extern int	__svc_dup(struct svc_req *, caddr_t *, uint_t *, char *);
1085 extern int	__svc_dupdone(struct svc_req *, caddr_t, uint_t, int, char *);
1086 extern bool_t	__svc_vc_dupcache_init(SVCXPRT *, void *, int);
1087 extern int	__svc_vc_dup(struct svc_req *, caddr_t *, uint_t *);
1088 extern int	__svc_vc_dupdone(struct svc_req *, caddr_t, uint_t, int);
1089 #else
1090 extern bool_t	__svc_dupcache_init();
1091 extern int	__svc_dup();
1092 extern int	__svc_dupdone();
1093 extern bool_t	__svc_vc_dupcache_init();
1094 extern int	__svc_vc_dup();
1095 extern int	__svc_vc_dupdone();
1096 #endif	/* __STDC__ */
1097 #endif	/* _KERNEL */
1098 
1099 #ifdef	__cplusplus
1100 }
1101 #endif
1102 
1103 #endif	/* !_RPC_SVC_H */
1104