Remove building with NOCRYPTO option
[minix.git] / lib / libc / sys / getrlimit.2
blobc3cbffdb27342a62f2dcd49a954bfb451c3d80af
1 .\"     $NetBSD: getrlimit.2,v 1.36 2012/06/09 02:36:25 christos Exp $
2 .\"
3 .\" Copyright (c) 1980, 1991, 1993
4 .\"     The Regents of the University of California.  All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\" 3. Neither the name of the University nor the names of its contributors
15 .\"    may be used to endorse or promote products derived from this software
16 .\"    without specific prior written permission.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" SUCH DAMAGE.
29 .\"
30 .\"     @(#)getrlimit.2 8.1 (Berkeley) 6/4/93
31 .\"
32 .Dd June 8, 2012
33 .Dt GETRLIMIT 2
34 .Os
35 .Sh NAME
36 .Nm getrlimit ,
37 .Nm setrlimit
38 .Nd control maximum system resource consumption
39 .Sh LIBRARY
40 .Lb libc
41 .Sh SYNOPSIS
42 .In sys/resource.h
43 .Ft int
44 .Fn getrlimit "int resource" "struct rlimit *rlp"
45 .Ft int
46 .Fn setrlimit "int resource" "const struct rlimit *rlp"
47 .Sh DESCRIPTION
48 Limits on the consumption of system resources by the current process
49 and each process it creates may be obtained with the
50 .Fn getrlimit
51 call, and set with the
52 .Fn setrlimit
53 call.
54 Resources of an arbitrary process can be obtained/changed using
55 .Xr sysctl 3 .
56 .Pp
57 The
58 .Fa resource
59 parameter is one of the following:
60 .Bl -tag -width RLIMIT_FSIZEAA
61 .It Li RLIMIT_AS
62 The maximum amount (in bytes) of virtual memory the process is allowed to map.
63 .It Li RLIMIT_CORE
64 The largest size (in bytes)
65 .Pa core
66 file that may be created.
67 .It Li RLIMIT_CPU
68 The maximum amount of CPU time (in seconds) to be used by
69 each process.
70 .It Li RLIMIT_DATA
71 The maximum size (in bytes) of the data segment for a process;
72 this defines how far a program may extend its break with the
73 .Xr sbrk 2
74 system call.
75 .It Li RLIMIT_FSIZE
76 The largest size (in bytes) file that may be created.
77 .It Li RLIMIT_MEMLOCK
78 The maximum size (in bytes) which a process may lock into memory
79 using the
80 .Xr mlock 2
81 function.
82 .It Li RLIMIT_NOFILE
83 The maximum number of open files for this process.
84 .It Li RLIMIT_NPROC
85 The maximum number of simultaneous processes for this user id.
86 .It Li RLIMIT_NTHR
87 The maximum number of simultaneous threads (Lightweight Processes) for this
88 user id.
89 Kernel threads and the first thread of each process are not counted against
90 this limit.
91 .It Li RLIMIT_RSS
92 The maximum size (in bytes) to which a process's resident set size may
93 grow.
94 This imposes a limit on the amount of physical memory to be given to
95 a process; if memory is tight, the system will prefer to take memory
96 from processes that are exceeding their declared resident set size.
97 .It Li RLIMIT_SBSIZE
98 The maximum size (in bytes) of the socket buffers
99 set by the
100 .Xr setsockopt 2
101 .Dv SO_RCVBUF
103 .Dv SO_SNDBUF
104 options.
105 .It Li RLIMIT_STACK
106 The maximum size (in bytes) of the stack segment for a process;
107 this defines how far a program's stack segment may be extended.
108 Stack extension is performed automatically by the system.
111 A resource limit is specified as a soft limit and a hard limit.
112 When a soft limit is exceeded a process may receive a signal (for example,
113 if the CPU time or file size is exceeded), but it will be allowed to
114 continue execution until it reaches the hard limit (or modifies
115 its resource limit).
117 .Em rlimit
118 structure is used to specify the hard and soft limits on a resource,
119 .Bd -literal -offset indent
120 struct rlimit {
121         rlim_t  rlim_cur;       /* current (soft) limit */
122         rlim_t  rlim_max;       /* hard limit */
126 Only the super-user may raise the maximum limits.
127 Other users may only alter
128 .Fa rlim_cur
129 within the range from 0 to
130 .Fa rlim_max
131 or (irreversibly) lower
132 .Fa rlim_max .
135 .Dq infinite
136 value for a limit is defined as
137 .Dv RLIM_INFINITY .
139 Because this information is stored in the per-process information,
140 this system call must be executed directly by the shell if it
141 is to affect all future processes created by the shell.
142 Thus, shells provide built-in commands to change the limits
143 .Ic ( limit
145 .Xr csh 1 ,
147 .Ic ulimit
149 .Xr sh 1 ) .
151 The system refuses to extend the data or stack space when the limits
152 would be exceeded in the normal way: a
153 .Xr brk 2
154 call fails if the data space limit is reached.
155 When the stack limit is reached, the process receives
156 a segmentation fault
157 .Pq Dv SIGSEGV ;
158 if this signal is not
159 caught by a handler using the signal stack, this signal
160 will kill the process.
162 A file I/O operation that would create a file larger that the process'
163 soft limit will cause the write to fail and a signal
164 .Dv SIGXFSZ
165 to be
166 generated; this normally terminates the process, but may be caught.
167 When the soft CPU time limit is exceeded, a signal
168 .Dv SIGXCPU
169 is sent to the
170 offending process.
171 .Sh RETURN VALUES
172 A 0 return value indicates that the call succeeded, changing
173 or returning the resource limit.
174 Otherwise, \-1 is returned and the global variable
175 .Va errno
176 is set to indicate the error.
177 .Sh ERRORS
179 .Fn getrlimit
181 .Fn setrlimit
182 will fail if:
183 .Bl -tag -width Er
184 .It Bq Er EFAULT
185 The address specified for
186 .Fa rlp
187 is invalid.
188 .It Bq Er EINVAL
189 Specified
190 .Fa resource
191 was invalid; or, in the
192 .Fn setrlimit
193 call, the specified
194 .Fa rlim_cur
195 exceeds the specified
196 .Fa rlim_max .
197 .It Bq Er EPERM
198 The limit specified to
199 .Fn setrlimit
200 would have
201 raised the maximum limit value, and the caller is not the super-user.
205 .Fn setrlimit
206 function may fail if:
207 .Bl -tag -width Er
208 .It Bq Er EINVAL
209 The limit specified to
210 .Fn setrlimit
211 cannot be lowered, because current usage is already higher than the limit.
213 .Sh SEE ALSO
214 .Xr csh 1 ,
215 .Xr sh 1 ,
216 .Xr mlock 2 ,
217 .Xr setsockopt 2 ,
218 .Xr sigaction 2 ,
219 .Xr sigaltstack 2 ,
220 .Xr libquota 3 ,
221 .Xr sysctl 3
222 .\" Sh STANDARDS
223 .\" With exception of
224 .\" .Li RLIMIT_AS
225 .\" (which is not currently supported), the
226 .\" .Fn getrlimit
227 .\" and
228 .\" .Fn setrlimit
229 .\" functions conform to
230 .\" .St -susv2 .
231 .Sh HISTORY
233 .Fn getrlimit
234 function call appeared in
235 .Bx 4.2 .
236 .Sh BUGS
237 The resource limit
238 .Dv RLIMIT_RSS
239 is not implemented in
240 .Xr uvm 9
241 which means that process memory size limits are not enforced.