2011-03-30 18:27:52 +00:00
|
|
|
.\"-
|
|
|
|
.\" Copyright (c) 2009 Edward Tomasz Napierala
|
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR THE VOICES IN HIS HEAD BE
|
|
|
|
.\" LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
.\" POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" $FreeBSD$
|
|
|
|
.\"
|
2018-02-26 18:04:17 +00:00
|
|
|
.Dd February 26, 2018
|
2011-03-30 18:27:52 +00:00
|
|
|
.Dt RCTL 8
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm rctl
|
|
|
|
.Nd display and update resource limits database
|
|
|
|
.Sh SYNOPSIS
|
|
|
|
.Nm
|
|
|
|
.Op Fl h
|
|
|
|
.Op Fl n
|
2015-11-29 12:01:36 +00:00
|
|
|
.Op Ar filter Ar ...
|
2011-03-30 18:27:52 +00:00
|
|
|
.Nm
|
|
|
|
.Fl a
|
2015-11-29 12:01:36 +00:00
|
|
|
.Ar rule Ar ...
|
2011-03-30 18:27:52 +00:00
|
|
|
.Nm
|
2014-02-15 14:56:50 +00:00
|
|
|
.Fl l
|
2011-03-30 18:27:52 +00:00
|
|
|
.Op Fl h
|
|
|
|
.Op Fl n
|
2015-11-29 12:01:36 +00:00
|
|
|
.Ar filter Ar ...
|
2011-03-30 18:27:52 +00:00
|
|
|
.Nm
|
|
|
|
.Fl r
|
2015-11-29 12:01:36 +00:00
|
|
|
.Ar filter Ar ...
|
2011-03-30 18:27:52 +00:00
|
|
|
.Nm
|
|
|
|
.Fl u
|
2014-02-15 14:56:50 +00:00
|
|
|
.Op Fl h
|
2015-11-29 12:01:36 +00:00
|
|
|
.Ar filter Ar ...
|
2011-03-30 18:27:52 +00:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
When called without options, the
|
|
|
|
.Nm
|
|
|
|
command writes currently defined RCTL rules to standard output.
|
|
|
|
.Pp
|
|
|
|
If a
|
|
|
|
.Ar filter
|
|
|
|
argument is specified, only rules matching the filter are displayed.
|
|
|
|
The options are as follows:
|
|
|
|
.Bl -tag -width indent
|
|
|
|
.It Fl a Ar rule
|
|
|
|
Add
|
|
|
|
.Ar rule
|
|
|
|
to the RCTL database.
|
|
|
|
.It Fl l Ar filter
|
|
|
|
Display rules applicable to the process defined by
|
|
|
|
.Ar filter .
|
2012-09-01 11:24:02 +00:00
|
|
|
Note that this is different from showing the rules when called without
|
|
|
|
any options, as it shows not just the rules with subject equal to that
|
|
|
|
of process, but also rules for the user, jail, and login class applicable
|
|
|
|
to the process.
|
2011-03-30 18:27:52 +00:00
|
|
|
.It Fl r Ar filter
|
|
|
|
Remove rules matching
|
|
|
|
.Ar filter
|
|
|
|
from the RCTL database.
|
|
|
|
.It Fl u Ar filter
|
2017-05-28 17:13:38 +00:00
|
|
|
Display resource utilization for a subject
|
2014-02-15 14:56:50 +00:00
|
|
|
.Po
|
|
|
|
.Sy process ,
|
|
|
|
.Sy user ,
|
|
|
|
.Sy loginclass
|
|
|
|
or
|
|
|
|
.Sy jail
|
|
|
|
.Pc
|
|
|
|
matching the
|
2011-03-30 18:27:52 +00:00
|
|
|
.Ar filter .
|
|
|
|
.It Fl h
|
|
|
|
"Human-readable" output.
|
|
|
|
Use unit suffixes: Byte, Kilobyte, Megabyte,
|
|
|
|
Gigabyte, Terabyte and Petabyte.
|
|
|
|
.It Fl n
|
|
|
|
Display user IDs numerically rather than converting them to a user name.
|
2011-06-02 09:56:42 +00:00
|
|
|
.El
|
2014-02-15 14:56:50 +00:00
|
|
|
.Pp
|
|
|
|
Modifying rules affects all currently running and future processes matching
|
|
|
|
the rule.
|
2011-03-30 18:27:52 +00:00
|
|
|
.Sh RULE SYNTAX
|
|
|
|
Syntax for a rule is subject:subject-id:resource:action=amount/per.
|
|
|
|
.Pp
|
2014-02-15 14:56:50 +00:00
|
|
|
.Bl -tag -width "subject-id" -compact -offset indent
|
|
|
|
.It subject
|
|
|
|
defines the kind of entity the rule applies to.
|
|
|
|
It can be either
|
|
|
|
.Sy process ,
|
|
|
|
.Sy user ,
|
|
|
|
.Sy loginclass ,
|
|
|
|
or
|
|
|
|
.Sy jail .
|
|
|
|
.It subject-id
|
|
|
|
identifies the
|
|
|
|
.Em subject .
|
|
|
|
It can be a process ID, user name, numerical user ID, login class name from
|
|
|
|
.Xr login.conf 5 ,
|
2012-09-01 11:24:02 +00:00
|
|
|
or jail name.
|
2014-02-15 14:56:50 +00:00
|
|
|
.It resource
|
|
|
|
identifies the resource the rule controls.
|
|
|
|
See the
|
|
|
|
.Sx RESOURCES
|
|
|
|
section below for details.
|
|
|
|
.It action
|
|
|
|
defines what will happen when a process exceeds the allowed
|
|
|
|
.Em amount .
|
|
|
|
See the
|
|
|
|
.Sx ACTIONS
|
|
|
|
section below for details.
|
|
|
|
.It amount
|
|
|
|
defines how much of the resource a process can use before
|
|
|
|
the defined
|
|
|
|
.Em action
|
|
|
|
triggers.
|
|
|
|
Resources which limit bytes may use prefixes from
|
|
|
|
.Xr expand_number 3 .
|
|
|
|
.It per
|
|
|
|
defines what entity the
|
|
|
|
.Em amount
|
|
|
|
gets accounted for.
|
2011-03-30 18:27:52 +00:00
|
|
|
For example, rule "loginclass:users:vmem:deny=100M/process" means
|
|
|
|
that each process of any user belonging to login class "users" may allocate
|
|
|
|
up to 100MB of virtual memory.
|
|
|
|
Rule "loginclass:users:vmem:deny=100M/user" would mean that for each
|
|
|
|
user belonging to the login class "users", the sum of virtual memory allocated
|
2011-03-30 20:13:55 +00:00
|
|
|
by all the processes of that user will not exceed 100MB.
|
2011-03-30 18:27:52 +00:00
|
|
|
Rule "loginclass:users:vmem:deny=100M/loginclass" would mean that the sum of
|
|
|
|
virtual memory allocated by all processes of all users belonging to that login
|
|
|
|
class will not exceed 100MB.
|
2014-02-15 14:56:50 +00:00
|
|
|
.El
|
2011-03-30 18:27:52 +00:00
|
|
|
.Pp
|
2014-02-15 14:56:50 +00:00
|
|
|
A valid rule has all those fields specified, except for
|
|
|
|
.Em per ,
|
|
|
|
which defaults
|
|
|
|
to the value of
|
|
|
|
.Em subject .
|
2011-03-30 18:27:52 +00:00
|
|
|
.Pp
|
2014-02-15 14:56:50 +00:00
|
|
|
A filter is a rule for which one of more fields other than
|
|
|
|
.Em per
|
|
|
|
is left empty.
|
2011-03-30 18:27:52 +00:00
|
|
|
For example, a filter that matches every rule could be written as ":::=/",
|
|
|
|
or, in short, ":".
|
|
|
|
A filter that matches all the login classes would be "loginclass:".
|
2014-02-15 14:56:50 +00:00
|
|
|
A filter that matches all defined rules for
|
|
|
|
.Sy maxproc
|
|
|
|
resource would be
|
2012-03-01 10:21:10 +00:00
|
|
|
"::maxproc".
|
2014-02-15 14:56:50 +00:00
|
|
|
.Sh SUBJECTS
|
|
|
|
.Bl -column -offset 3n "pseudoterminals" ".Sy username or numerical User ID"
|
|
|
|
.It Sy process Ta numerical Process ID
|
|
|
|
.It Sy user Ta user name or numerical User ID
|
|
|
|
.It Sy loginclass Ta login class from
|
|
|
|
.Xr login.conf 5
|
|
|
|
.It Sy jail Ta jail name
|
|
|
|
.El
|
2011-03-30 18:27:52 +00:00
|
|
|
.Sh RESOURCES
|
2011-07-14 19:18:17 +00:00
|
|
|
.Bl -column -offset 3n "pseudoterminals"
|
2014-02-15 14:56:50 +00:00
|
|
|
.It Sy cputime Ta "CPU time, in seconds"
|
|
|
|
.It Sy datasize Ta "data size, in bytes"
|
|
|
|
.It Sy stacksize Ta "stack size, in bytes"
|
|
|
|
.It Sy coredumpsize Ta "core dump size, in bytes"
|
|
|
|
.It Sy memoryuse Ta "resident set size, in bytes"
|
|
|
|
.It Sy memorylocked Ta "locked memory, in bytes"
|
|
|
|
.It Sy maxproc Ta "number of processes"
|
|
|
|
.It Sy openfiles Ta "file descriptor table size"
|
|
|
|
.It Sy vmemoryuse Ta "address space limit, in bytes"
|
|
|
|
.It Sy pseudoterminals Ta "number of PTYs"
|
2015-09-14 15:37:19 +00:00
|
|
|
.It Sy swapuse Ta "swap space that may be reserved or used, in bytes"
|
2014-02-15 14:56:50 +00:00
|
|
|
.It Sy nthr Ta "number of threads"
|
|
|
|
.It Sy msgqqueued Ta "number of queued SysV messages"
|
|
|
|
.It Sy msgqsize Ta "SysV message queue size, in bytes"
|
|
|
|
.It Sy nmsgq Ta "number of SysV message queues"
|
|
|
|
.It Sy nsem Ta "number of SysV semaphores"
|
|
|
|
.It Sy nsemop Ta "number of SysV semaphores modified in a single semop(2) call"
|
|
|
|
.It Sy nshm Ta "number of SysV shared memory segments"
|
|
|
|
.It Sy shmsize Ta "SysV shared memory size, in bytes"
|
|
|
|
.It Sy wallclock Ta "wallclock time, in seconds"
|
|
|
|
.It Sy pcpu Ta "%CPU, in percents of a single CPU core"
|
2016-04-07 04:23:25 +00:00
|
|
|
.It Sy readbps Ta "filesystem reads, in bytes per second"
|
|
|
|
.It Sy writebps Ta "filesystem writes, in bytes per second"
|
|
|
|
.It Sy readiops Ta "filesystem reads, in operations per second"
|
|
|
|
.It Sy writeiops Ta "filesystem writes, in operations per second"
|
2011-03-30 18:27:52 +00:00
|
|
|
.El
|
|
|
|
.Sh ACTIONS
|
2011-07-14 19:18:17 +00:00
|
|
|
.Bl -column -offset 3n "pseudoterminals"
|
2014-02-15 14:56:50 +00:00
|
|
|
.It Sy deny Ta deny the allocation; not supported for
|
2016-04-07 04:23:25 +00:00
|
|
|
.Sy cputime ,
|
|
|
|
.Sy wallclock ,
|
|
|
|
.Sy readbps ,
|
|
|
|
.Sy writebps ,
|
|
|
|
.Sy readiops ,
|
2014-02-15 14:56:50 +00:00
|
|
|
and
|
2016-04-07 04:23:25 +00:00
|
|
|
.Sy writeiops
|
2014-02-15 14:56:50 +00:00
|
|
|
.It Sy log Ta "log a warning to the console"
|
|
|
|
.It Sy devctl Ta "send notification to"
|
2011-03-30 18:27:52 +00:00
|
|
|
.Xr devd 8
|
2014-02-15 14:56:50 +00:00
|
|
|
using
|
|
|
|
.Sy system
|
|
|
|
= "RCTL",
|
|
|
|
.Sy subsystem
|
|
|
|
= "rule",
|
|
|
|
.Sy type
|
|
|
|
= "matched"
|
|
|
|
.It sig* e.g.
|
|
|
|
.Sy sigterm ;
|
|
|
|
send a signal to the offending process.
|
2011-03-30 18:27:52 +00:00
|
|
|
See
|
|
|
|
.Xr signal 3
|
2014-02-15 14:56:50 +00:00
|
|
|
for a list of supported signals
|
2016-04-07 04:23:25 +00:00
|
|
|
.It Sy throttle Ta "slow down process execution"; only supported for
|
|
|
|
.Sy readbps ,
|
|
|
|
.Sy writebps ,
|
|
|
|
.Sy readiops ,
|
|
|
|
and
|
|
|
|
.Sy writeiops .
|
2014-02-15 14:56:50 +00:00
|
|
|
.El
|
2011-03-30 18:27:52 +00:00
|
|
|
.Pp
|
|
|
|
Not all actions are supported for all resources.
|
2014-02-15 14:56:50 +00:00
|
|
|
Attempting to add a rule with an action not supported by a given resource will
|
|
|
|
result in error.
|
2011-03-30 18:27:52 +00:00
|
|
|
.Sh EXIT STATUS
|
|
|
|
.Ex -std
|
|
|
|
.Sh EXAMPLES
|
2012-12-04 00:53:20 +00:00
|
|
|
Prevent user "joe" from allocating more than 1GB of virtual memory:
|
|
|
|
.Dl Nm Fl a Ar user:joe:vmemoryuse:deny=1g
|
2011-03-30 18:27:52 +00:00
|
|
|
.Pp
|
2012-12-04 00:53:20 +00:00
|
|
|
Remove all RCTL rules:
|
|
|
|
.Dl Nm Fl r Ar \&:
|
2011-03-30 18:27:52 +00:00
|
|
|
.Pp
|
2017-05-28 17:13:38 +00:00
|
|
|
Display resource utilization information for jail named "www":
|
2012-12-04 00:53:20 +00:00
|
|
|
.Dl Nm Fl hu Ar jail:www
|
2011-03-30 18:27:52 +00:00
|
|
|
.Pp
|
2012-12-04 00:53:20 +00:00
|
|
|
Display all the rules applicable to process with PID 512:
|
|
|
|
.Dl Nm Fl l Ar process:512
|
2014-02-15 14:56:50 +00:00
|
|
|
.Pp
|
|
|
|
Display all rules:
|
|
|
|
.Dl Nm
|
|
|
|
.Pp
|
|
|
|
Display all rules matching user "joe":
|
|
|
|
.Dl Nm Ar user:joe
|
|
|
|
.Pp
|
|
|
|
Display all rules matching login classes:
|
|
|
|
.Dl Nm Ar loginclass:
|
2011-03-30 18:27:52 +00:00
|
|
|
.Sh SEE ALSO
|
2018-02-26 18:04:17 +00:00
|
|
|
.Xr cpuset 1 ,
|
2017-05-28 17:25:47 +00:00
|
|
|
.Xr rctl 4 ,
|
2012-09-16 23:25:13 +00:00
|
|
|
.Xr rctl.conf 5
|
2011-03-30 18:27:52 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
command appeared in
|
2012-04-22 07:55:56 +00:00
|
|
|
.Fx 9.0 .
|
2011-03-30 18:27:52 +00:00
|
|
|
.Sh AUTHORS
|
|
|
|
.An -nosplit
|
|
|
|
The
|
|
|
|
.Nm
|
2014-02-16 08:42:52 +00:00
|
|
|
was developed by
|
2014-06-23 08:23:05 +00:00
|
|
|
.An Edward Tomasz Napierala Aq Mt trasz@FreeBSD.org
|
2014-02-16 08:42:52 +00:00
|
|
|
under sponsorship from the FreeBSD Foundation.
|
2014-02-15 14:56:50 +00:00
|
|
|
.Sh BUGS
|
|
|
|
Limiting
|
|
|
|
.Sy memoryuse
|
|
|
|
may kill the machine due to thrashing.
|
2016-04-07 04:23:25 +00:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Sy readiops
|
|
|
|
and
|
|
|
|
.Sy writeiops
|
|
|
|
counters are only approximations.
|
|
|
|
Like
|
|
|
|
.Sy readbps
|
|
|
|
and
|
|
|
|
.Sy writebps ,
|
|
|
|
they are calculated in the filesystem layer, where it is difficult
|
|
|
|
or even impossible to observe actual disk device operations.
|
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Sy writebps
|
|
|
|
and
|
|
|
|
.Sy writeiops
|
|
|
|
resources generally account for writes to the filesystem cache,
|
|
|
|
not to actual devices.
|