summaryrefslogtreecommitdiff
path: root/usr/src/man/man3nsl/rpc_control.3nsl
blob: ce905004abee71cb67ae453a19b710d4ec4e414b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
'\" te
.\" Copyright 2015 Nexenta Systems, Inc.  All rights reserved.
.\"  Copyright 1989 AT&T
.\" Copyright (C) 1999, Sun Microsystems, Inc. All Rights Reserved
.\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
.\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
.\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
.TH RPC_CONTROL 3NSL "Feb 18, 2015"
.SH NAME
rpc_control \- library routine for manipulating global RPC attributes for
client and server applications
.SH SYNOPSIS
.LP
.nf
\fBbool_t\fR \fBrpc_control\fR(\fBint\fR \fIop\fR, \fBvoid *\fR\fIinfo\fR);
.fi

.SH DESCRIPTION
.LP
This \fBRPC\fR library routine allows applications to set and modify global
\fBRPC\fR attributes that apply to clients as well as servers.  At present, it
supports only server side operations. This function allows applications to set
and modify global attributes that apply to client as well as server functions.
\fIop\fR indicates the type of operation, and \fIinfo\fR is a pointer to the
operation specific information. The supported values of \fIop\fR and their
argument types, and what they do are:
.sp
.in +2
.nf
RPC_SVC_MTMODE_SET       int *	set multithread mode
RPC_SVC_MTMODE_GET       int *	get multithread mode
RPC_SVC_THRMAX_SET       int *	set maximum number of threads
RPC_SVC_THRMAX_GET       int *	get maximum number of threads
RPC_SVC_THRTOTAL_GET     int *	get number of active threads
RPC_SVC_THRCREATES_GET   int *	get number of threads created
RPC_SVC_THRERRORS_GET    int *	get number of thread create errors
RPC_SVC_USE_POLLFD       int *	set number of file descriptors to unlimited
RPC_SVC_CONNMAXREC_SET   int *  set non-blocking max rec size
RPC_SVC_CONNMAXREC_GET   int *  get non-blocking max rec size
.fi
.in -2

.sp
.LP
There are three multithread (MT) modes.  These are:
.sp
.in +2
.nf
RPC_SVC_MT_NONE	Single threaded mode	(default)
RPC_SVC_MT_AUTO	Automatic MT mode
RPC_SVC_MT_USER	User MT mode
.fi
.in -2

.sp
.LP
Unless the application sets the Automatic or User MT modes, it will stay in the
default (single threaded) mode.  See the \fINetwork Interfaces Programmer's
Guide\fR for the meanings of these modes and programming examples.  Once a mode
is set, it cannot be changed.
.sp
.LP
By default, the maximum number of threads that the server will create at any
time is 16.  This allows the service developer to put a bound on thread
resources consumed by a server.  If a server needs to process more than 16
client requests concurrently, the maximum number of threads must be set to the
desired number.  This parameter may be set at any time by the server.
.sp
.LP
Set and get operations will succeed even in modes where the operations don't
apply.  For example, you can set the maximum number of threads in any mode,
even though it makes sense only for the Automatic MT mode. All of the get
operations except \fBRPC_SVC_MTMODE_GET\fR apply only to the Automatic MT mode,
so values returned in other modes may be undefined.
.sp
.LP
By default, \fBRPC\fR servers are limited to a maximum of 1024 file descriptors
or connections due to limitations in the historical interfaces
\fBsvc_fdset\fR(3NSL) and \fBsvc_getreqset\fR(3NSL). Applications written to
use the preferred interfaces of \fBsvc_pollfd\fR(3NSL) and
\fBsvc_getreq_poll\fR(3NSL) can use an unlimited number of file descriptors.
Setting \fIinfo\fR to point to a non-zero integer and  \fIop\fR to
\fBRPC_SVC_USE_POLLFD\fR removes the limitation.
.sp
.LP
Connection oriented \fBRPC\fR transports read \fBRPC\fR requests in blocking
mode by default. Thus, they may be adversely affected by network delays and
broken clients. \fBRPC_SVC_CONNMAXREC_SET\fR enables non-blocking mode and
establishes the maximum record size (in bytes) for \fBRPC\fR requests;
\fBRPC\fR responses are not affected. Buffer space is allocated as needed up to
the specified maximum, starting at the maximum or \fBRPC_MAXDATASIZE\fR,
whichever is smaller.
.sp
.LP
The value established by \fBRPC_SVC_CONNMAXREC_SET\fR is used when a connection
is created, and it remains in effect for that connection until it is closed. To
change the value for existing connections on a per-connection basis, see
\fBsvc_control\fR(3NSL).
.sp
.LP
\fBRPC_SVC_CONNMAXREC_GET\fR retrieves the current maximum record size. A zero
value means that no maximum is in effect, and that the connections are in
blocking mode.
.sp
.LP
\fIinfo\fR is a pointer to an argument of type \fBint\fR. Non-connection RPC
transports ignore \fBRPC_SVC_CONNMAXREC_SET\fR and
\fBRPC_SVC_CONNMAXREC_GET\fR.
.SH RETURN VALUES
.LP
This routine returns \fBTRUE\fR if the operation was successful and
returns \fBFALSE\fR otherwise.
.SH ATTRIBUTES
.LP
See \fBattributes\fR(5) for descriptions of the following attributes:
.sp

.sp
.TS
box;
c | c
l | l .
ATTRIBUTE TYPE	ATTRIBUTE VALUE
_
MT-Level	MT-Safe
.TE

.SH SEE ALSO
.LP
\fBrpcbind\fR(1M), \fBrpc\fR(3NSL), \fBrpc_svc_calls\fR(3NSL),
\fBattributes\fR(5)
.sp
.LP
\fINetwork Interfaces Programmer's Guide\fR