summaryrefslogtreecommitdiff
path: root/usr/src/man/man2/getrlimit.2
blob: 4695358721c3dcdcf8e139a8207790330d64869c (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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
.\"
.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for
.\" permission to reproduce portions of its copyrighted documentation.
.\" Original documentation from The Open Group can be obtained online at
.\" http://www.opengroup.org/bookstore/.
.\"
.\" The Institute of Electrical and Electronics Engineers and The Open
.\" Group, have given us permission to reprint portions of their
.\" documentation.
.\"
.\" In the following statement, the phrase ``this text'' refers to portions
.\" of the system documentation.
.\"
.\" Portions of this text are reprinted and reproduced in electronic form
.\" in the SunOS Reference Manual, from IEEE Std 1003.1, 2004 Edition,
.\" Standard for Information Technology -- Portable Operating System
.\" Interface (POSIX), The Open Group Base Specifications Issue 6,
.\" Copyright (C) 2001-2004 by the Institute of Electrical and Electronics
.\" Engineers, Inc and The Open Group.  In the event of any discrepancy
.\" between these versions and the original IEEE and The Open Group
.\" Standard, the original IEEE and The Open Group Standard is the referee
.\" document.  The original Standard can be obtained online at
.\" http://www.opengroup.org/unix/online.html.
.\"
.\" This notice shall appear on any product containing this material.
.\"
.\" 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]
.\"
.\"
.\" Copyright 1989 AT&T
.\" Portions Copyright (c) 1994, X/Open Company Limited.  All Rights Reserved.
.\" Copyright (c) 2006, Sun Microsystems, Inc.  All Rights Reserved.
.\"
.TH GETRLIMIT 2 "Aug 21, 2006"
.SH NAME
getrlimit, setrlimit \- control maximum system resource consumption
.SH SYNOPSIS
.LP
.nf
#include <sys/resource.h>

\fBint\fR \fBgetrlimit\fR(\fBint\fR \fIresource\fR, \fBstruct rlimit *\fR\fIrlp\fR);
.fi

.LP
.nf
\fBint\fR \fBsetrlimit\fR(\fBint\fR \fIresource\fR, \fBconst struct rlimit *\fR\fIrlp\fR);
.fi

.SH DESCRIPTION
.sp
.LP
Limits on the consumption of a variety of system resources by a process and
each process it creates may be obtained with the \fBgetrlimit()\fR and set with
\fBsetrlimit()\fR functions.
.sp
.LP
Each call to either \fBgetrlimit()\fR or \fBsetrlimit()\fR identifies a
specific resource to be operated upon as well as a resource limit. A resource
limit is a pair of values:  one specifying the current (soft) limit, the other
a maximum (hard) limit. Soft limits may be changed by a process to any value
that is less than or equal to the hard limit. A process may (irreversibly)
lower its hard limit to any value that is greater than or equal to the soft
limit. Only a process with {\fBPRIV_SYS_RESOURCE\fR} asserted in the effective
set can raise a hard limit. Both hard and soft limits can be changed in a
single call to \fBsetrlimit()\fR subject to the constraints described above.
Limits may have an "infinite" value of \fBRLIM_INFINITY\fR. The \fIrlp\fR
argument is a pointer to \fBstruct\fR \fBrlimit\fR that includes the following
members:
.sp
.in +2
.nf
rlim_t    rlim_cur;     /* current (soft) limit */
rlim_t    rlim_max;     /* hard limit */
.fi
.in -2

.sp
.LP
The type \fBrlim_t\fR is an arithmetic data type to which objects of type
\fBint\fR, \fBsize_t\fR, and  \fBoff_t\fR can be cast without loss of
information.
.sp
.LP
The possible resources, their descriptions, and the actions taken when the
current limit is exceeded are summarized as follows:
.sp
.ne 2
.na
\fB\fBRLIMIT_CORE\fR\fR
.ad
.RS 17n
The maximum size of a core file in bytes that may be created by a process. A
limit of  \fB0\fR will prevent the creation of a core file. The writing of a
core file will terminate at this size.
.RE

.sp
.ne 2
.na
\fB\fBRLIMIT_CPU\fR\fR
.ad
.RS 17n
The maximum amount of CPU time in seconds used by a process. This is a soft
limit only.  The \fBSIGXCPU\fR signal is sent to the process. If the process is
holding or ignoring \fBSIGXCPU\fR, the behavior is scheduling class defined.
.RE

.sp
.ne 2
.na
\fB\fBRLIMIT_DATA\fR\fR
.ad
.RS 17n
The maximum size of a process's heap in bytes.  The \fBbrk\fR(2) function will
fail with  \fBerrno\fR set to  \fBENOMEM\fR.
.RE

.sp
.ne 2
.na
\fB\fBRLIMIT_FSIZE\fR\fR
.ad
.RS 17n
The maximum size of a file in bytes that may be created by a process. A limit
of  \fB0\fR will prevent the creation of a file.  The \fBSIGXFSZ\fR signal is
sent to the process. If the process is holding or ignoring  \fBSIGXFSZ\fR,
continued attempts to increase the size of a file beyond the limit will fail
with  \fBerrno\fR set to  \fBEFBIG\fR.
.RE

.sp
.ne 2
.na
\fB\fBRLIMIT_NOFILE\fR\fR
.ad
.RS 17n
One more than the maximum value that the system may assign to a newly created
descriptor. This limit constrains the number of file descriptors that a process
may create.
.RE

.sp
.ne 2
.na
\fB\fBRLIMIT_STACK\fR\fR
.ad
.RS 17n
The maximum size of a process's stack in bytes. The system will not
automatically grow the stack beyond this limit.
.sp
Within a process, \fBsetrlimit()\fR will increase the limit on the size of your
stack, but will not move current memory segments to allow for that growth. To
guarantee that the process stack can grow to the limit, the limit must be
altered prior to the execution of the process in which the new stack size is to
be used.
.sp
Within a multithreaded process, \fBsetrlimit()\fR has no impact on the stack
size limit for the calling thread if the calling thread is not the main thread.
A call to \fBsetrlimit()\fR for \fBRLIMIT_STACK\fR impacts only the main
thread's stack, and should be made only from the main thread, if at all.
.sp
The \fBSIGSEGV\fR signal is sent to the process. If the process is holding or
ignoring  \fBSIGSEGV\fR, or is catching  \fBSIGSEGV\fR and has not made
arrangements to use an alternate stack (see \fBsigaltstack\fR(2)), the
disposition of  \fBSIGSEGV\fR will be set to  \fBSIG_DFL\fR before it is sent.
.RE

.sp
.ne 2
.na
\fB\fBRLIMIT_VMEM\fR\fR
.ad
.RS 17n
The maximum size of a process's mapped address space in bytes.  If this limit
is exceeded, the \fBbrk\fR(2) and  \fBmmap\fR(2) functions will fail with
\fBerrno\fR set to  \fBENOMEM\fR. In addition, the automatic stack growth will
fail with the effects outlined above.
.RE

.sp
.ne 2
.na
\fB\fBRLIMIT_AS\fR\fR
.ad
.RS 17n
This is the maximum size of a process's total available memory, in bytes.  If
this limit is exceeded, the \fBbrk\fR(2), \fBmalloc\fR(3C), \fBmmap\fR(2) and
\fBsbrk\fR(2) functions will fail with \fBerrno\fR set to \fBENOMEM\fR. In
addition, the automatic stack growth will fail with the effects outlined above.
.RE

.sp
.LP
Because limit information is stored in the per-process information, the shell
builtin \fBulimit\fR command must directly execute this system call if it is to
affect all future processes created by the shell.
.sp
.LP
The value of the current limit of the following resources affect these
implementation defined parameters:
.sp

.sp
.TS
c c
l l .
Limit	Implementation Defined Constant
\fBRLIMIT_FSIZE\fR	\fBFCHR_MAX\fR
\fBRLIMIT_NOFILE\fR	\fBOPEN_MAX\fR
.TE

.sp
.LP
When using the \fBgetrlimit()\fR function, if a resource limit can be
represented correctly in an object of type  \fBrlim_t\fR, then its
representation is returned; otherwise, if the value of the resource limit is
equal to that of the corresponding saved hard limit, the value returned is
\fBRLIM_SAVED_MAX\fR; otherwise the value returned is \fBRLIM_SAVED_CUR\fR.
.sp
.LP
When using the \fBsetrlimit()\fR function, if the requested new limit is
\fBRLIM_INFINITY\fR, the new limit will be "no limit"; otherwise if the
requested new limit is \fBRLIM_SAVED_MAX\fR, the new limit will be the
corresponding saved hard limit; otherwise, if the requested new limit is
\fBRLIM_SAVED_CUR\fR, the new limit will be the corresponding saved soft limit;
otherwise, the new limit will be the requested value. In addition, if the
corresponding saved limit can be represented correctly in an object of type
\fBrlim_t\fR, then it will be overwritten with the new limit.
.sp
.LP
The result of setting a limit to \fBRLIM_SAVED_MAX\fR or \fBRLIM_SAVED_CUR\fR
is unspecified unless a previous call to  \fBgetrlimit()\fR returned that value
as the soft or hard limit for the corresponding resource limit.
.sp
.LP
A limit whose value is greater than \fBRLIM_INFINITY\fR is permitted.
.sp
.LP
The \fBexec\fR family of functions also cause resource limits to be saved.  See
\fBexec\fR(2).
.SH RETURN VALUES
.sp
.LP
Upon successful completion, \fBgetrlimit()\fR and \fBsetrlimit()\fR return
\fB0\fR. Otherwise, these functions return \fB\(mi1\fR and set \fBerrno\fR to
indicate the error.
.SH ERRORS
.sp
.LP
The \fBgetrlimit()\fR and \fBsetrlimit()\fR functions will fail if:
.sp
.ne 2
.na
\fB\fBEFAULT\fR\fR
.ad
.RS 10n
The \fIrlp\fR argument points to an illegal address.
.RE

.sp
.ne 2
.na
\fB\fBEINVAL\fR\fR
.ad
.RS 10n
An invalid \fIresource\fR was specified; or in a \fBsetrlimit()\fR call, the
new \fBrlim_cur\fR exceeds the new \fBrlim_max\fR.
.RE

.sp
.ne 2
.na
\fB\fBEPERM\fR\fR
.ad
.RS 10n
The limit specified to \fBsetrlimit()\fR would have raised the maximum limit
value and {\fBPRIV_SYS_RESOURCE\fR} is not asserted in the effective set of the
current process.
.RE

.sp
.LP
The \fBsetrlimit()\fR function may fail if:
.sp
.ne 2
.na
\fB\fBEINVAL\fR\fR
.ad
.RS 10n
The limit specified cannot be lowered because current usage is already higher
than the limit.
.RE

.SH USAGE
.sp
.LP
The \fBgetrlimit()\fR and \fBsetrlimit()\fR functions have transitional
interfaces for 64-bit file offsets.  See \fBlf64\fR(7).
.sp
.LP
The rlimit functionality is now provided by the more general resource control
facility described on the \fBsetrctl\fR(2) manual page. The actions associated
with the resource limits described above are true at system boot, but an
administrator can modify the local configuration to modify signal delivery or
type. Application authors that utilize rlimits for the purposes of resource
awareness should investigate the resource controls facility.
.SH ATTRIBUTES
.sp
.LP
See \fBattributes\fR(7) for descriptions of the following attributes:
.sp

.sp
.TS
box;
c | c
l | l .
ATTRIBUTE TYPE	ATTRIBUTE VALUE
_
Interface Stability	Standard
.TE

.SH SEE ALSO
.sp
.LP
.BR brk (2),
.BR exec (2),
.BR fork (2),
.BR open (2),
.BR setrctl (2),
.BR sigaltstack (2),
.BR ulimit (2),
.BR getdtablesize (3C),
.BR malloc (3C),
.BR signal (3C),
.BR sysconf (3C),
.BR signal.h (3HEAD),
.BR attributes (7),
.BR lf64 (7),
.BR privileges (7),
.BR resource_controls (7),
.BR standards (7),
.BR rctladm (8)