]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/protect/protect.1
MFV: less v632.
[FreeBSD/FreeBSD.git] / usr.bin / protect / protect.1
1 .\" Copyright (c) 2013 Hudson River Trading LLC
2 .\" Written by: John H. Baldwin <jhb@FreeBSD.org>
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, 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 .\"
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 .\" SUCH DAMAGE.
25 .\"
26 .\" $FreeBSD$
27 .\"
28 .Dd July 12, 2022
29 .Dt PROTECT 1
30 .Os
31 .Sh NAME
32 .Nm protect
33 .Nd "protect processes from being killed when swap space is exhausted"
34 .Sh SYNOPSIS
35 .Nm
36 .Op Fl i
37 .Ar command
38 .Nm
39 .Op Fl cdi
40 .Fl g Ar pgrp
41 .Nm
42 .Op Fl cdi
43 .Fl p Ar pid
44 .Sh DESCRIPTION
45 The
46 .Nm
47 command is used to mark processes as protected.
48 The kernel does not kill protected processes when swap space is exhausted.
49 Note that this protected state is not inherited by child processes by default.
50 .Pp
51 The options are:
52 .Bl -tag -width command
53 .It Fl c
54 Remove protection from the specified processes.
55 .It Fl d
56 Apply the operation to all current children of the specified processes.
57 .It Fl i
58 Apply the operation to all future children of the specified processes.
59 .It Fl g Ar pgrp
60 Apply the operation to all processes in the specified process group.
61 .It Fl p Ar pid
62 Apply the operation to the specified process.
63 .It Ar command
64 Execute
65 .Ar command
66 as a protected process.
67 .El
68 .Pp
69 Note that only one of the
70 .Fl p
71 or
72 .Fl g
73 flags may be specified when adjusting the state of existing processes.
74 .Pp
75 Daemons can be protected on startup using
76 .Ao Ar name Ac Ns Va _oomprotect
77 option from
78 .Xr rc.conf 5 .
79 .Sh EXIT STATUS
80 .Ex -std
81 .Sh EXAMPLES
82 Mark the Xorg server as protected:
83 .Pp
84 .Dl "pgrep Xorg | xargs protect -p"
85 .Pp
86 Protect all ssh sessions and their child processes:
87 .Pp
88 .Dl "pgrep sshd | xargs protect -dip"
89 .Pp
90 Remove protection from all current and future processes:
91 .Pp
92 .Dl "protect -cdi -p 1"
93 .Pp
94 Using
95 .Xr ps 1
96 to check if the protect flag has been applied to the process:
97 .Pp
98 .Dl "ps -O flags,flags2 -p 64430"
99 .Pp
100 .Dl " PID        F       F2 TT  STAT    TIME COMMAND"
101 .Dl "64430 10104002 00000001  5  S+   0:00.00 ./main"
102 .Dl "        ^P            ^PI"
103 .Pp
104 In the above example
105 .Nm P
106 points at the protected flag and
107 .Nm PI
108 points at the inheritance flag.
109 The process is protected if
110 .Nm P
111 bit is set to 1.
112 All children of this process will also be protected if
113 .Nm PI
114 bit is set to 1.
115 .Sh DIAGNOSTICS
116 .Bl -diag
117 .It "protect: procctl: Operation not permitted"
118 The
119 .Nm
120 command does not have the required permissions to protect selected processes.
121 There are many reasons why this could be the case, e.g.:
122 .Bl -dash
123 .It
124 .Nm
125 is not executed by root.
126 .It
127 .Nm
128 is executed inside a
129 .Xr jail 8 ,
130 which is not supported at the moment.
131 .El
132 .El
133 .Sh SEE ALSO
134 .Xr ps 1 ,
135 .Xr procctl 2 ,
136 .Xr rc.conf 5
137 .Sh BUGS
138 If you protect a runaway process that allocates all memory the system will
139 deadlock.