]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/veriexec/veriexec.8
Remove spurious newline
[FreeBSD/FreeBSD.git] / sbin / veriexec / veriexec.8
1 .\"-
2 .\" Copyright (c) 2018, Juniper Networks, Inc.
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 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
14 .\" "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
15 .\" LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
16 .\" A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
17 .\" OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
18 .\" SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
19 .\" LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 .\" OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd July 4, 2018
28 .Dt VERIEXEC 8
29 .Os
30 .Sh NAME
31 .Nm veriexec
32 .Nd manipulate state of mac_veriexec
33 .Sh SYNOPSIS
34 .Nm
35 .Op Fl v
36 .Op Fl C Ar directory
37 .Pa manifest
38 .Nm
39 .Fl z Ar state
40 .Nm
41 .Fl i Ar state
42 .Nm
43 .Fl x
44 .Ar file ...
45 .Sh DESCRIPTION
46 .Nm
47 is a utility to query or manipulate the state of
48 .Xr mac_veriexec 4 .
49 .Pp
50 The first form is for loading a
51 .Pa manifest .
52 .Nm
53 first verifies a digital signature of the
54 .Ar manifest
55 and if successful, parses it and feeds its content to kernel.
56 .Pp
57 The second form with
58 .Fl z
59 is used to modify the
60 .Ar state ,
61 and with
62 .Fl i
63 to query the current
64 .Ar state .
65 .Pp
66 The final form with
67 .Fl x
68 is used to test whether
69 .Ar file
70 is verified or not.
71 This requires
72 .Xr mac_veriexec 4
73 to be in the
74 .Ql active
75 or
76 .Ql enforce
77 state.
78 .Pp
79 The possible states
80 are:
81 .Bl -tag -width enforce
82 .It Ar loaded
83 set automatically when first
84 .Pa manifest
85 has been loaded.
86 .It Ar active
87 .Xr mac_veriexec 4
88 will begin checking files.
89 This state can only be entered from the
90 .Ar loaded
91 state.
92 .It Ar enforce
93 .Xr mac_veriexec 4
94 will fail attempts to
95 .Xr exec 2
96 or
97 .Xr open 2
98 files with
99 .Dv O_VERIFY
100 unless verified.
101 .It Ar locked
102 prevent loading of any more manifests.
103 .El
104 .Sh MANIFESTS
105 The manifest contains a mapping of relative pathnames to fingerprints
106 with optional flags.
107 For example:
108 .Bd -literal -offset indent
109 sbin/veriexec sha256=f22136...c0ff71 no_ptrace
110 usr/bin/python sha256=5944d9...876525 indirect
111 sbin/somedaemon sha256=77fc2f...63f5687 label=mod1/val1,mod2/val2
112 .Ed
113 The supported flags are:
114 .Bl -tag -width indirect
115 .It Ql indirect
116 the executable cannot be run directly,
117 but can be used as an interpreter for example via:
118 .Bd -literal -offset indent
119 #!/usr/bin/python
120 .Ed
121 .It Ql no_ptrace
122 do not allow running executable under a debugger.
123 Useful for any application critical to the security state of system.
124 .El
125 .Pp
126 The
127 .Ql label
128 argument allows associating a
129 .Xr maclabel 7
130 with the executable.
131 Neither
132 .Nm
133 nor
134 .Xr mac_veriexec 4
135 (if it supports labels)
136 pay any attention to the content of the label
137 they are provided for the use of other
138 .Xr mac 4
139 modules.
140 .Sh HISTORY
141 The Verified Exec system first appeared in NetBSD.
142 This utility derrives from the one found in Junos.
143 The key difference is the requirement that manifest files
144 be digitally signed.
145
146