2008-08-19 19:30:36 +00:00
.TH CHECKPOLICY 8
.SH NAME
checkpolicy \- SELinux policy compiler
.SH SYNOPSIS
.B checkpolicy
2023-05-12 09:57:49 +00:00
.I "[\-b[F]] [\-C] [\-d] [\-U handle_unknown (allow,deny,reject)] [\-M] [\-N] [\-c policyvers] [\-o output_file|\-] [\-S] [\-t target_platform (selinux,xen)] [\-O] [\-E] [\-V] [input_file]"
2008-08-19 19:30:36 +00:00
.br
.SH "DESCRIPTION"
This manual page describes the
.BR checkpolicy
command.
.PP
.B checkpolicy
is a program that checks and compiles a SELinux security policy configuration
2023-06-01 14:39:14 +00:00
into a binary representation that can be loaded into the kernel.
If no input file name is specified,
2021-09-28 15:46:18 +00:00
.B checkpolicy
will attempt to read from policy.conf or policy, depending on whether the \- b
flag is specified.
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 file rather than a source policy.conf file.
.TP
2019-02-07 10:25:45 +00:00
.B \- F,\-\-conf
Write policy.conf file rather than binary policy file. Can only be used with binary policy file.
.TP
2015-04-01 14:05:04 +00:00
.B \- C,\-\-cil
Write CIL policy file rather than binary policy file.
.TP
2009-11-02 17:14:28 +00:00
.B \- d,\-\-debug
2008-08-19 19:30:36 +00:00
Enter debug mode after loading the policy.
.TP
2019-02-07 10:25:45 +00:00
.B \- U,\-\-handle-unknown <action>
Specify how the kernel should handle unknown classes or permissions (deny, allow or reject).
2017-03-21 20:00:30 +00:00
.TP
2009-11-02 17:14:28 +00:00
.B \- M,\-\-mls
2008-08-19 19:30:36 +00:00
Enable the MLS policy when checking and compiling the policy.
.TP
2023-05-12 09:57:49 +00:00
.B \- N,\-\-disable-neverallow
Do not check neverallow rules.
.TP
2019-02-07 10:25:45 +00:00
.B \- c policyvers
Specify the policy version, defaults to the latest.
.TP
2009-11-02 17:14:28 +00:00
.B \- o,\-\-output filename
2019-10-19 10:26:55 +00:00
Write a policy file (binary, policy.conf, or CIL policy)
2019-10-19 10:26:56 +00:00
to the specified filename. If - is given as filename,
write it to standard output.
2008-08-19 19:30:36 +00:00
.TP
2019-02-07 10:25:45 +00:00
.B \- S,\-\-sort
Sort ocontexts before writing out the binary policy. This option makes output of checkpolicy consistent with binary policies created by semanage and secilc.
2009-11-02 17:14:28 +00:00
.TP
.B \- t,\-\-target
Specify the target platform (selinux or xen).
.TP
2019-06-13 11:45:58 +00:00
.B \- O,\-\-optimize
Optimize the final kernel policy (remove redundant rules).
.TP
2020-03-05 18:40:34 +00:00
.B \- E,\-\-werror
Treat warnings as errors
.TP
2009-11-02 17:14:28 +00:00
.B \- V,\-\-version
Show version information.
.TP
.B \- h,\-\-help
Show usage information.
2008-08-19 19:30:36 +00:00
2023-06-01 14:39:14 +00:00
.SH EXAMPLE
.nf
Generate policy.conf based on the system policy
# checkpolicy -b -M -F /etc/selinux/targeted/policy/policy.33 -o policy.conf
Recompile system policy so that unknown permissions are denied (uses policy.conf from ^^).
Note that binary policy extension represents its version, which is subject to change
# checkpolicy -M -U deny -o /etc/selinux/targeted/policy/policy.33 policy.conf
# load_policy
Generate CIL representation of current system policy
# checkpolicy -b -M -C /etc/selinux/targeted/policy/policy.33 -o policy.out
2008-08-19 19:30:36 +00:00
.SH "SEE ALSO"
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
2020-05-25 13:14:55 +00:00
This manual page was written by Árpád Magosányi <mag@bunuel.tii.matav.hu>,
2023-07-19 17:36:36 +00:00
and edited by Stephen Smalley <stephen.smalley.work@gmail.com>.
The program was written by Stephen Smalley <stephen.smalley.work@gmail.com>.