2008-08-19 21:30:36 +02:00
|
|
|
.TH CHECKMODULE 8
|
|
|
|
.SH NAME
|
|
|
|
checkmodule \- SELinux policy module compiler
|
|
|
|
.SH SYNOPSIS
|
|
|
|
.B checkmodule
|
2015-04-01 16:05:04 +02:00
|
|
|
.I "[\-h] [\-b] [\-C] [\-m] [\-M] [\-U handle_unknown ] [\-V] [\-o output_file] [input_file]"
|
2008-08-19 21:30:36 +02:00
|
|
|
.SH "DESCRIPTION"
|
|
|
|
This manual page describes the
|
|
|
|
.BR checkmodule
|
|
|
|
command.
|
|
|
|
.PP
|
|
|
|
.B checkmodule
|
|
|
|
is a program that checks and compiles a SELinux security policy module
|
|
|
|
into a binary representation. It can generate either a base policy
|
2013-05-10 14:45:18 +02:00
|
|
|
module (default) or a non-base policy module (\-m option); typically,
|
2008-08-19 21:30:36 +02:00
|
|
|
you would build a non-base policy module to add to an existing module
|
|
|
|
store that already has a base module provided by the base policy. Use
|
|
|
|
semodule_package to combine this module with its optional file
|
|
|
|
contexts to create a policy package, and then use semodule to install
|
|
|
|
the module package into the module store and load the resulting policy.
|
|
|
|
|
|
|
|
.SH OPTIONS
|
|
|
|
.TP
|
2009-11-02 18:14:28 +01:00
|
|
|
.B \-b,\-\-binary
|
2008-08-19 21:30:36 +02:00
|
|
|
Read an existing binary policy module file rather than a source policy
|
|
|
|
module file. This option is a development/debugging aid.
|
|
|
|
.TP
|
2015-04-01 16:05:04 +02:00
|
|
|
.B \-C,\-\-cil
|
|
|
|
Write CIL policy file rather than binary policy file.
|
|
|
|
.TP
|
2021-10-27 06:50:56 +02:00
|
|
|
.B \-E,\-\-werror
|
|
|
|
Treat warnings as errors
|
|
|
|
.TP
|
2010-06-14 20:45:46 +02:00
|
|
|
.B \-h,\-\-help
|
2010-06-14 20:44:44 +02:00
|
|
|
Print usage.
|
|
|
|
.TP
|
2008-08-19 21:30:36 +02:00
|
|
|
.B \-m
|
|
|
|
Generate a non-base policy module.
|
|
|
|
.TP
|
2009-11-02 18:14:28 +01:00
|
|
|
.B \-M,\-\-mls
|
2008-08-19 21:30:36 +02:00
|
|
|
Enable the MLS/MCS support when checking and compiling the policy module.
|
|
|
|
.TP
|
2009-11-02 18:14:28 +01:00
|
|
|
.B \-V,\-\-version
|
2019-04-17 18:37:30 +02:00
|
|
|
Show policy versions created by this program.
|
2008-08-19 21:30:36 +02:00
|
|
|
.TP
|
2009-11-02 18:14:28 +01:00
|
|
|
.B \-o,\-\-output filename
|
2008-08-19 21:30:36 +02:00
|
|
|
Write a binary policy module file to the specified filename.
|
|
|
|
Otherwise, checkmodule will only check the syntax of the module source file
|
|
|
|
and will not generate a binary module at all.
|
2009-11-02 18:14:28 +01:00
|
|
|
.TP
|
|
|
|
.B \-U,\-\-handle-unknown <action>
|
|
|
|
Specify how the kernel should handle unknown classes or permissions (deny, allow or reject).
|
2019-04-17 18:37:30 +02:00
|
|
|
.TP
|
|
|
|
.B \-c policyvers
|
|
|
|
Specify the policy version, defaults to the latest.
|
2008-08-19 21:30:36 +02:00
|
|
|
|
|
|
|
.SH EXAMPLE
|
|
|
|
.nf
|
|
|
|
# Build a MLS/MCS-enabled non-base policy module.
|
2013-05-10 14:45:18 +02:00
|
|
|
$ checkmodule \-M \-m httpd.te \-o httpd.mod
|
2008-08-19 21:30:36 +02:00
|
|
|
.fi
|
|
|
|
|
|
|
|
.SH "SEE ALSO"
|
|
|
|
.B semodule(8), semodule_package(8)
|
2019-11-06 17:30:43 +01:00
|
|
|
SELinux Reference Policy documentation at https://github.com/SELinuxProject/refpolicy/wiki
|
2008-08-19 21:30:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
.SH AUTHOR
|
|
|
|
This manual page was copied from the checkpolicy man page
|
2021-10-27 06:50:56 +02:00
|
|
|
written by Árpád Magosányi <mag@bunuel.tii.matav.hu>,
|
2008-08-19 21:30:36 +02:00
|
|
|
and edited by Dan Walsh <dwalsh@redhat.com>.
|
2017-08-17 20:16:06 +02:00
|
|
|
The program was written by Stephen Smalley <sds@tycho.nsa.gov>.
|