2005-01-06 18:28:13 +03:00
|
|
|
.\" $NetBSD: veriexecctl.8,v 1.7 2005/01/06 15:28:13 wiz Exp $
|
2002-11-23 13:52:49 +03:00
|
|
|
.\"
|
|
|
|
.\" Copyright (c) 1999
|
|
|
|
.\" Brett Lymn - blymn@baea.com.au, brett_lymn@yahoo.com.au
|
|
|
|
.\"
|
|
|
|
.\" This code is donated to The NetBSD Foundation by the author.
|
|
|
|
.\"
|
|
|
|
.\" 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.
|
|
|
|
.\" 3. The name of the Author may not be used to endorse or promote
|
|
|
|
.\" products derived from this software without specific prior written
|
|
|
|
.\" permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 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.
|
|
|
|
.\"
|
2005-01-06 18:28:13 +03:00
|
|
|
.\" $Id: veriexecctl.8,v 1.7 2005/01/06 15:28:13 wiz Exp $
|
2002-11-23 13:52:49 +03:00
|
|
|
.\"
|
2005-01-06 18:28:13 +03:00
|
|
|
.Dd January 6, 2005
|
2002-11-23 13:52:49 +03:00
|
|
|
.Dt VERIEXECCTL 8
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm veriexecctl
|
|
|
|
.Nd load verified exec fingerprints
|
|
|
|
.Sh SYNOPSIS
|
|
|
|
.Nm
|
|
|
|
.Ar fingerprints
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
command loads the in-kernel fingerprint table from the fingerprints
|
|
|
|
given in the
|
|
|
|
.Ar fingerprints
|
|
|
|
file.
|
|
|
|
Once loaded the kernel can then validate executed programs
|
|
|
|
or files against the loaded fingerprints and report when fingerprints
|
|
|
|
do not match.
|
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Ar fingerprints
|
|
|
|
file contains lines of fields (separated by one or more whitespace
|
|
|
|
characters) of the form:
|
2004-03-06 15:03:48 +03:00
|
|
|
.Pp
|
|
|
|
.Dl path type fingerprint options
|
|
|
|
.Pp
|
|
|
|
Where
|
|
|
|
.Em path
|
|
|
|
is the full path to the file and
|
|
|
|
.Em type
|
|
|
|
is the type of fingerprint used, currently this may be either md5 or sha1.
|
2002-11-23 13:52:49 +03:00
|
|
|
Other fingerprints may be available depending on kernel support.
|
2004-03-06 15:03:48 +03:00
|
|
|
The
|
|
|
|
.Em fingerprint
|
|
|
|
field is a hexadecimal representation of the fingerprint for
|
|
|
|
the file.
|
|
|
|
The field
|
|
|
|
.Em options
|
|
|
|
contains the associated options for the file.
|
2002-11-23 13:52:49 +03:00
|
|
|
Currently there are two valid options:
|
2004-03-06 15:03:48 +03:00
|
|
|
.Pp
|
2002-11-23 13:52:49 +03:00
|
|
|
.Bl -tag -width INDIRECT -compact
|
2004-03-06 15:03:48 +03:00
|
|
|
.Pp
|
2002-11-23 13:52:49 +03:00
|
|
|
.It Pa INDIRECT
|
|
|
|
If this option is set then the executable cannot be invoked directly, it
|
|
|
|
can only be used as an interpreter in shell scripts.
|
|
|
|
.It Pa FILE
|
|
|
|
Indicates that the fingerprint is associated with a file, not an
|
|
|
|
executable.
|
|
|
|
Files have their fingerprints verified during
|
|
|
|
.Xr open 2
|
|
|
|
and are automatically made read only.
|
2004-03-06 15:03:48 +03:00
|
|
|
This option may be used to verify shared libraries have not been
|
|
|
|
tampered with.
|
2002-11-23 13:52:49 +03:00
|
|
|
.El
|
2004-03-06 15:03:48 +03:00
|
|
|
.Pp
|
2002-11-23 13:52:49 +03:00
|
|
|
There must be only one executable/fingerprint pair per line.
|
|
|
|
Comments are indicated by the first character of a line being a
|
|
|
|
.Sq \&#
|
|
|
|
character.
|
|
|
|
.Sh FILES
|
2002-12-22 02:41:44 +03:00
|
|
|
.Bl -tag -width /dev/veriexec -compact
|
|
|
|
.It Pa /dev/veriexec
|
2002-11-23 13:52:49 +03:00
|
|
|
verified executable device node
|
|
|
|
.El
|
2005-01-06 03:33:54 +03:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Pa /usr/share/examples/veriexecctl/gen_md5 ,
|
2005-01-06 18:28:13 +03:00
|
|
|
.Pa /usr/share/examples/veriexecctl/gen_sha1
|
2002-11-23 13:52:49 +03:00
|
|
|
.Sh HISTORY
|
|
|
|
.Nm
|
|
|
|
first appeared in
|
2003-01-20 00:25:36 +03:00
|
|
|
.Nx 2.0 .
|
2002-11-23 13:52:49 +03:00
|
|
|
.Sh NOTES
|
|
|
|
.Nm
|
|
|
|
requires the kernel to have been configured with the
|
|
|
|
.Dv VERIFIED_EXEC
|
|
|
|
option and the verifiedexec pseudo-device.
|