]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/limits/limits.1
This commit was generated by cvs2svn to compensate for changes in r98681,
[FreeBSD/FreeBSD.git] / usr.bin / limits / limits.1
1 .\" Copyright (c) 1996 David Nugent <davidn@blaze.net.au>
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, is permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice immediately at the beginning of the file, without modification,
9 .\"    this list of conditions, and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\" 3. This work was done expressly for inclusion into FreeBSD.  Other use
14 .\"    is permitted provided this notation is included.
15 .\" 4. Absolutely no warranty of function or purpose is made by the author
16 .\"    David Nugent.
17 .\" 5. Modifications may be freely made to this file providing the above
18 .\"    conditions are met.
19 .\"
20 .\" $FreeBSD$
21 .\"
22 .Dd January 15, 1996
23 .Dt LIMITS 1
24 .Os
25 .Sh NAME
26 .Nm limits
27 .Nd set or display process resource limits
28 .Sh SYNOPSIS
29 .Nm
30 .Op Fl C Ar class
31 .Op Fl SHB
32 .Op Fl ea
33 .Op Fl cdflmnstu Op val
34 .Nm
35 .Op Fl C Ar class
36 .Op Fl SHB
37 .Op Fl cdflmnstu Op val
38 .Op Fl E
39 .Op Ar name Ns = Ns Ar value ...
40 .Op Ar command
41 .Nm
42 .Op Fl U Ar user
43 .Op Fl SHB
44 .Op Fl ea
45 .Op Fl cdflmnstu Op val
46 .Nm
47 .Op Fl U Ar user
48 .Op Fl SHB
49 .Op Fl cdflmnstu Op val
50 .Op Fl E
51 .Op Ar name Ns = Ns Ar value ...
52 .Op Ar command
53 .Sh DESCRIPTION
54 The
55 .Nm
56 utility either prints or sets kernel resource limits, and may optionally set
57 environment variables like
58 .Xr env 1
59 and run a program with the selected resources.
60 Three uses of the
61 .Nm
62 command are possible:
63 .Pp
64 .Bl -tag -width indent
65 .It Xo
66 .Nm
67 .Op Ar limitflags
68 .Op Ar name Ns = Ns Ar value
69 .Ar command
70 .Xc
71 This usage sets limits according to
72 .Ar limitflags ,
73 optionally sets environment variables given as
74 .Ar name Ns = Ns Ar value
75 pairs, and then runs the specified command.
76 .It Xo
77 .Nm
78 .Op Ar limitflags
79 .Xc
80 This usage determines values of resource settings according to
81 .Ar limitflags ,
82 does not attempt to set them and outputs these values to
83 standard output.
84 By default, this will output the current kernel resource settings
85 active for the calling process.
86 Using the
87 .Fl C Ar class
88 or
89 .Fl U Ar user
90 flags, you may also display the current resource settings modified
91 by the appropriate login class resource limit entries from
92 the
93 .Xr login.conf 5
94 login capabilities database.
95 .It Xo
96 .Nm
97 .Fl e Op Ar limitflags
98 .Xc
99 This usage determines values of resource settings according to
100 .Ar limitflags ,
101 but does not set them itself.
102 Like the previous usage it outputs these values to standard
103 output, except that it will emit them in
104 .Em eval
105 format, suitable for the calling shell.
106 The calling shell is determined by examining the entries in the
107 .Pa /proc
108 filesystem for the parent process.
109 If the shell is known (i.e. it is one of sh, csh, bash, tcsh, ksh,
110 pdksh or rc),
111 .Nm
112 emits 'limit' or 'ulimit' commands in the format understood by
113 that shell.
114 If the name of the shell cannot be determined, then the 'ulimit'
115 format used by
116 .Xr sh 1
117 is used.
118 .Pp
119 This is very useful for setting limits used by scripts, or prior
120 launching of daemons and other background tasks with specific
121 resource limit settings, and provides the benefit of allowing
122 global configuration of maximum resource usage by maintaining a
123 central database of settings in the login class database.
124 .Pp
125 Within a shell script,
126 .Nm
127 will normally be used with eval within backticks as follows:
128 .Pp
129 .Dl eval `limits -e -C daemon`
130 .Pp
131 which causes the output of
132 .Nm
133 to be evaluated and set by the current shell.
134 .El
135 .Pp
136 The value of limitflags specified in the above contains one or more of the
137 following options:
138 .Pp
139 .Bl -tag -width "-d [limit]"
140 .It Fl C Ar class
141 Use current resource values, modified by the resource entries applicable
142 for the login class "class".
143 .It Fl U Ar user
144 Use current resource values, modified by the resource entries applicable
145 to the login class which "user" belongs to.
146 If the user does not belong to a class, then the resource capabilities
147 for the "default" class are used, if it exists, or the "root" class if
148 the user is a superuser account.
149 .It Fl S
150 Select display or setting of "soft" (or current) resource limits.
151 If specific limits settings follow this switch, only soft limits are
152 affected unless overridden later with either the
153 .Fl H
154 or
155 .Fl B
156 flags.
157 .It Fl H
158 Select display or setting of "hard" (or maximum) resource limits.
159 If specific limits settings follow this switch, only hard limits are
160 affected until overridden later with either the
161 .Fl S
162 or
163 .Fl B
164 flags.
165 .It Fl B
166 Select display or setting of both "soft" (current) or "hard" (maximum)
167 resource limits.
168 If specific limits settings follow this switch, both soft and hard
169 limits are affected until overridden later with either the
170 .Fl S
171 or
172 .Fl H
173 flags.
174 .Fl e
175 Select "eval mode" formatting for output.
176 This is valid only on display mode and cannot be used when running a
177 command.
178 The exact syntax used for output depends upon the type of shell from
179 which
180 .Nm
181 is invoked.
182 .It Fl b Op Ar limit
183 Selects or sets the
184 .Em sbsize
185 resource limit.
186 .It Fl c Op Ar limit
187 Select or set (if 'limit' is specified) the
188 .Em coredumpsize
189 resource limit.
190 A value of 0 disables core dumps.
191 .It Fl d Op Ar limit
192 Select or set (if 'limit' is specified) the
193 .Em datasize
194 resource limit.
195 .It Fl f Op Ar limit
196 Select or set the
197 .Em filesize
198 resource limit.
199 .It Fl l Op Ar limit
200 Select or set the
201 .Em memorylocked
202 resource limit.
203 .It Fl m Op Ar limit
204 Select or set the
205 .Em memoryuse
206 size limit.
207 .It Fl n Op Ar limit
208 Select or set the
209 .Em openfiles
210 resource limit.  The system-wide limit on the maximum number of
211 open files per process can be viewed using the 'sysctl kern.maxfilesperproc'
212 command.  The total number of simultaneously open files in the entire
213 system is limited to the value displayed by the 'sysctl kern.maxfiles'
214 command.
215 .It Fl s Op Ar limit
216 Select or set the
217 .Em stacksize
218 resource limit.
219 .It Fl t Op Ar limit
220 Select or set the
221 .Em cputime
222 resource limit.
223 .It Fl u Op Ar limit
224 Select or set the
225 .Em maxproc
226 resource limit.  The system-wide limit on the maximum number of processes
227 allowed per UID can be viewed using the 'sysctl kern.maxprocperuid' command.
228 The maximum number of processes that can be running simultaneously
229 in the entire system is limited to the value given by
230 the 'sysctl kern.maxproc' command.
231 .Pp
232 Valid values for
233 .Ar limit
234 in the above set of flags consist of either the
235 string
236 .Em infinity ,
237 .Em inf ,
238 .Em unlimited
239 or
240 .Em unlimit
241 for an infinite (or kernel-defined maximum)
242 limit, or a numeric value maybe followed by a suffix.
243 Values which relate to size default to a value in bytes, or one of the
244 following suffixes may be used as a multiplier:
245 .Pp
246 .Bl -tag -offset indent -width "xxxx" -compact
247 .It b
248 512 byte blocks.
249 .It k
250 kilobytes (1024 bytes).
251 .It m
252 megabytes (1024*1024 bytes).
253 .It g
254 gigabytes.
255 .It t
256 terabytes.
257 .El
258 .Pp
259 The
260 .Em cputime
261 resource defaults to a number of seconds, but a multiplier may be
262 used, and as with size values, multiple values separated by a valid
263 suffix are added together:
264 .Bl -tag -offset indent -width "xxxx" -compact
265 .It s
266 seconds.
267 .It m
268 minutes.
269 .It h
270 hours.
271 .It d
272 days.
273 .It w
274 weeks.
275 .It y
276 365 day years.
277 .El
278 .Pp
279 .It Fl E
280 The option
281 .Sq Fl E
282 causes
283 .Nm
284 to completely ignore the environment it inherits.
285 .It Fl a
286 This option forces all resource settings to be displayed even if
287 other specific resource settings have been specified.
288 For example, if you wish to disable core dumps when starting up
289 the usenet news system, but wish to set all other resource settings
290 as well that apply to the 'news' account, you might use:
291 .Pp
292 .Dl eval `limits -U news -aBec 0`
293 .Pp
294 As with the
295 .Xr setrlimit 2
296 call, only the superuser may raise process "hard" resource limits.
297 Non-root users may, however, lower them or change "soft" resource limits
298 within to any value below the hard limit.
299 When invoked to execute a program, the failure of
300 .Nm
301 to raise a hard limit is considered a fatal error.
302 .El
303 .Sh DIAGNOSTICS
304 The
305 .Nm
306 utility
307 exits with EXIT_FAILURE if usage is incorrect in any way; i.e. an invalid
308 option, or set/display options are selected in the same invocation,
309 .Fl e
310 is used when running a program, etc.
311 When run in display or eval mode,
312 .Nm
313 exits with a status of EXIT_SUCCESS.
314 When run in command mode and execution of the command succeeds, the exit status
315 will be whatever the executed program returns.
316 .Sh SEE ALSO
317 .Xr csh 1 ,
318 .Xr env 1 ,
319 .Xr limit 1 ,
320 .Xr sh 1 ,
321 .Xr getrlimit 2 ,
322 .Xr setrlimit 2 ,
323 .Xr login_cap 3 ,
324 .Xr login.conf 5 ,
325 .Xr sysctl 8
326 .Sh BUGS
327 The
328 .Nm
329 utility does not handle commands with equal (``='') signs in their
330 names, for obvious reasons.
331 .Pp
332 When eval output is selected, the
333 .Pa /proc
334 filesystem must be installed
335 and mounted for the shell to be correctly determined, and therefore
336 output syntax correct for the running shell.
337 The default output is valid for
338 .Xr sh 1 ,
339 so this means that any
340 usage of
341 .Nm
342 in eval mode prior mounting
343 .Pa /proc
344 may only occur in standard bourne
345 shell scripts.
346 .Pp
347 The
348 .Nm
349 utility makes no effort to ensure that resource settings emitted or displayed
350 are valid and settable by the current user.
351 Only a superuser account may raise hard limits, and when doing so
352 the
353 .Fx
354 kernel will silently lower limits to values less than
355 specified if the values given are too high.