2008-08-19 19:30:36 +00:00
|
|
|
.TH CHECKMODULE 8
|
|
|
|
.SH NAME
|
|
|
|
checkmodule \- SELinux policy module compiler
|
|
|
|
.SH SYNOPSIS
|
|
|
|
.B checkmodule
|
2023-05-12 09:57:49 +00:00
|
|
|
.I "[\-h] [\-b] [\-c policy_version] [\-C] [\-E] [\-m] [\-M] [\-N] [\-U handle_unknown] [\-V] [\-o output_file] [input_file]"
|
2008-08-19 19:30:36 +00: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 12:45:18 +00:00
|
|
|
module (default) or a non-base policy module (\-m option); typically,
|
2008-08-19 19:30:36 +00: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
|
2021-09-28 15:46:18 +00:00
|
|
|
.B semodule_package(8)
|
|
|
|
to combine this module with its optional file
|
|
|
|
contexts to create a policy package, and then use
|
|
|
|
.B semodule(8)
|
|
|
|
to install the module package into the module store and load the resulting
|
|
|
|
policy.
|
2008-08-19 19:30:36 +00:00
|
|
|
|
|
|
|
.SH OPTIONS
|
|
|
|
.TP
|
2009-11-02 17:14:28 +00:00
|
|
|
.B \-b,\-\-binary
|
2008-08-19 19:30:36 +00: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 14:05:04 +00:00
|
|
|
.B \-C,\-\-cil
|
|
|
|
Write CIL policy file rather than binary policy file.
|
|
|
|
.TP
|
2020-03-05 18:40:34 +00:00
|
|
|
.B \-E,\-\-werror
|
|
|
|
Treat warnings as errors
|
|
|
|
.TP
|
2010-06-14 18:45:46 +00:00
|
|
|
.B \-h,\-\-help
|
2010-06-14 18:44:44 +00:00
|
|
|
Print usage.
|
|
|
|
.TP
|
2008-08-19 19:30:36 +00:00
|
|
|
.B \-m
|
|
|
|
Generate a non-base policy module.
|
|
|
|
.TP
|
2009-11-02 17:14:28 +00:00
|
|
|
.B \-M,\-\-mls
|
2008-08-19 19:30:36 +00:00
|
|
|
Enable the MLS/MCS support when checking and compiling the policy module.
|
|
|
|
.TP
|
2023-05-12 09:57:49 +00:00
|
|
|
.B \-N,\-\-disable-neverallow
|
|
|
|
Do not check neverallow rules.
|
|
|
|
.TP
|
2009-11-02 17:14:28 +00:00
|
|
|
.B \-V,\-\-version
|
2019-04-17 16:37:30 +00:00
|
|
|
Show policy versions created by this program.
|
2008-08-19 19:30:36 +00:00
|
|
|
.TP
|
2009-11-02 17:14:28 +00:00
|
|
|
.B \-o,\-\-output filename
|
2008-08-19 19:30:36 +00: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 17:14:28 +00:00
|
|
|
.TP
|
|
|
|
.B \-U,\-\-handle-unknown <action>
|
|
|
|
Specify how the kernel should handle unknown classes or permissions (deny, allow or reject).
|
2019-04-17 16:37:30 +00:00
|
|
|
.TP
|
|
|
|
.B \-c policyvers
|
|
|
|
Specify the policy version, defaults to the latest.
|
2008-08-19 19:30:36 +00:00
|
|
|
|
|
|
|
.SH EXAMPLE
|
|
|
|
.nf
|
|
|
|
# Build a MLS/MCS-enabled non-base policy module.
|
2013-05-10 12:45:18 +00:00
|
|
|
$ checkmodule \-M \-m httpd.te \-o httpd.mod
|
2008-08-19 19:30:36 +00:00
|
|
|
.fi
|
|
|
|
|
|
|
|
.SH "SEE ALSO"
|
|
|
|
.B semodule(8), semodule_package(8)
|
2019-11-06 16:30:43 +00:00
|
|
|
SELinux Reference Policy documentation at https://github.com/SELinuxProject/refpolicy/wiki
|
2008-08-19 19:30:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
.SH AUTHOR
|
|
|
|
This manual page was copied from the checkpolicy man page
|
2020-05-25 13:14:55 +00:00
|
|
|
written by Árpád Magosányi <mag@bunuel.tii.matav.hu>,
|
2008-08-19 19:30:36 +00:00
|
|
|
and edited by Dan Walsh <dwalsh@redhat.com>.
|