]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/sys/getrlimit.2
zfs: merge openzfs/zfs@95f71c019
[FreeBSD/FreeBSD.git] / lib / libc / sys / getrlimit.2
1 .\" Copyright (c) 1980, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)getrlimit.2 8.1 (Berkeley) 6/4/93
29 .\"
30 .Dd September 30, 2016
31 .Dt GETRLIMIT 2
32 .Os
33 .Sh NAME
34 .Nm getrlimit ,
35 .Nm setrlimit
36 .Nd control maximum system resource consumption
37 .Sh LIBRARY
38 .Lb libc
39 .Sh SYNOPSIS
40 .In sys/types.h
41 .In sys/time.h
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 system call, and set with the
52 .Fn setrlimit
53 system call.
54 .Pp
55 The
56 .Fa resource
57 argument is one of the following:
58 .Bl -tag -width RLIMIT_FSIZEAA
59 .It Dv RLIMIT_AS
60 The maximum amount (in bytes) of virtual memory the process is
61 allowed to map.
62 .It Dv RLIMIT_CORE
63 The largest size (in bytes)
64 .Xr core 5
65 file that may be created.
66 .It Dv RLIMIT_CPU
67 The maximum amount of cpu time (in seconds) to be used by
68 each process.
69 .It Dv RLIMIT_DATA
70 The maximum size (in bytes) of the data segment for a process;
71 this defines how far a program may extend its break with the
72 .Xr sbrk 2
73 function.
74 .It Dv RLIMIT_FSIZE
75 The largest size (in bytes) file that may be created.
76 .It Dv RLIMIT_KQUEUES
77 The maximum number of kqueues this user id is allowed to create.
78 .It Dv RLIMIT_MEMLOCK
79 The maximum size (in bytes) which a process may lock into memory
80 using the
81 .Xr mlock 2
82 system call.
83 .It Dv RLIMIT_NOFILE
84 The maximum number of open files for this process.
85 .It Dv RLIMIT_NPROC
86 The maximum number of simultaneous processes for this user id.
87 .It Dv RLIMIT_NPTS
88 The maximum number of pseudo-terminals this user id is allowed to create.
89 .It Dv RLIMIT_RSS
90 When there is memory pressure and swap is available, prioritize eviction of
91 a process' resident pages beyond this amount (in bytes).
92 When memory is not under pressure, this rlimit is effectively ignored.
93 Even when there is memory pressure, the amount of available swap space and some
94 sysctl settings like
95 .Xr vm.swap_enabled
96 and
97 .Xr vm.swap_idle_enabled
98 can affect what happens to processes that have exceeded this size.
99 .Pp
100 Processes that exceed their set
101 .Dv RLIMIT_RSS
102 are not signalled or halted.
103 The limit is merely a hint to the VM daemon to prefer to deactivate pages from
104 processes that have exceeded their set
105 .Dv RLIMIT_RSS .
106 .It Dv RLIMIT_SBSIZE
107 The maximum size (in bytes) of socket buffer usage for this user.
108 This limits the amount of network memory, and hence the amount of
109 mbufs, that this user may hold at any time.
110 .It Dv RLIMIT_STACK
111 The maximum size (in bytes) of the stack segment for a process;
112 this defines how far a program's stack segment may be extended.
113 Stack extension is performed automatically by the system.
114 .It Dv RLIMIT_SWAP
115 The maximum size (in bytes) of the swap space that may be reserved or
116 used by all of this user id's processes.
117 This limit is enforced only if bit 1 of the
118 .Va vm.overcommit
119 sysctl is set.
120 Please see
121 .Xr tuning 7
122 for a complete description of this sysctl.
123 .It Dv RLIMIT_VMEM
124 An alias for
125 .Dv RLIMIT_AS .
126 .El
127 .Pp
128 A resource limit is specified as a soft limit and a hard limit.
129 When a soft limit is exceeded, a process might or might not receive a signal.
130 For example, signals are generated when the cpu time or file size is exceeded,
131 but not if the address space or RSS limit is exceeded.
132 A program that exceeds the soft limit is allowed to continue execution until it
133 reaches the hard limit, or modifies its own resource limit.
134 Even reaching the hard limit does not necessarily halt a process.
135 For example, if the RSS hard limit is exceeded, nothing happens.
136 .Pp
137 The
138 .Vt rlimit
139 structure is used to specify the hard and soft limits on a resource.
140 .Bd -literal -offset indent
141 struct rlimit {
142         rlim_t  rlim_cur;       /* current (soft) limit */
143         rlim_t  rlim_max;       /* maximum value for rlim_cur */
144 };
145 .Ed
146 .Pp
147 Only the super-user may raise the maximum limits.
148 Other users
149 may only alter
150 .Fa rlim_cur
151 within the range from 0 to
152 .Fa rlim_max
153 or (irreversibly) lower
154 .Fa rlim_max .
155 .Pp
156 An
157 .Dq infinite
158 value for a limit is defined as
159 .Dv RLIM_INFINITY .
160 .Pp
161 Because this information is stored in the per-process information,
162 this system call must be executed directly by the shell if it
163 is to affect all future processes created by the shell;
164 .Ic limit
165 is thus a built-in command to
166 .Xr csh 1 .
167 .Pp
168 The system refuses to extend the data or stack space when the limits
169 would be exceeded in the normal way: a
170 .Xr brk 2
171 function fails if the data space limit is reached.
172 When the stack limit is reached, the process receives
173 a segmentation fault
174 .Pq Dv SIGSEGV ;
175 if this signal is not
176 caught by a handler using the signal stack, this signal
177 will kill the process.
178 .Pp
179 A file I/O operation that would create a file larger that the process'
180 soft limit will cause the write to fail and a signal
181 .Dv SIGXFSZ
182 to be
183 generated; this normally terminates the process, but may be caught.
184 When
185 the soft cpu time limit is exceeded, a
186 .Dv SIGXCPU
187 signal is sent to the
188 offending process.
189 .Pp
190 When most operations would allocate more virtual memory than allowed by the
191 soft limit of
192 .Dv RLIMIT_AS ,
193 the operation fails with
194 .Dv ENOMEM
195 and no signal is raised.
196 A notable exception is stack extension, described above.
197 If stack extension would allocate more virtual memory than allowed by the soft
198 limit of
199 .Dv RLIMIT_AS ,
200 a
201 .Dv SIGSEGV
202 signal will be delivered.
203 The caller is free to raise the soft address space limit up to the hard limit
204 and retry the allocation.
205 .Sh RETURN VALUES
206 .Rv -std
207 .Sh ERRORS
208 The
209 .Fn getrlimit
210 and
211 .Fn setrlimit
212 system calls
213 will fail if:
214 .Bl -tag -width Er
215 .It Bq Er EFAULT
216 The address specified for
217 .Fa rlp
218 is invalid.
219 .It Bq Er EPERM
220 The limit specified to
221 .Fn setrlimit
222 would have
223 raised the maximum limit value, and the caller is not the super-user.
224 .El
225 .Sh SEE ALSO
226 .Xr csh 1 ,
227 .Xr quota 1 ,
228 .Xr quotactl 2 ,
229 .Xr sigaction 2 ,
230 .Xr sigaltstack 2 ,
231 .Xr sysctl 3 ,
232 .Xr ulimit 3
233 .Sh HISTORY
234 The
235 .Fn getrlimit
236 system call appeared in
237 .Bx 4.2 .