1openct_selinux(8) SELinux Policy openct openct_selinux(8)
2
3
4
6 openct_selinux - Security Enhanced Linux Policy for the openct pro‐
7 cesses
8
10 Security-Enhanced Linux secures the openct processes via flexible
11 mandatory access control.
12
13 The openct processes execute with the openct_t SELinux type. You can
14 check if you have these processes running by executing the ps command
15 with the -Z qualifier.
16
17 For example:
18
19 ps -eZ | grep openct_t
20
21
22
24 The openct_t SELinux type can be entered via the openct_exec_t file
25 type.
26
27 The default entrypoint paths for the openct_t domain are the following:
28
29 /usr/sbin/ifdhandler, /usr/sbin/openct-control
30
32 SELinux defines process types (domains) for each process running on the
33 system
34
35 You can see the context of a process using the -Z option to ps
36
37 Policy governs the access confined processes have to files. SELinux
38 openct policy is very flexible allowing users to setup their openct
39 processes in as secure a method as possible.
40
41 The following process types are defined for openct:
42
43 openct_t
44
45 Note: semanage permissive -a openct_t can be used to make the process
46 type openct_t permissive. SELinux does not deny access to permissive
47 process types, but the AVC (SELinux denials) messages are still gener‐
48 ated.
49
50
52 SELinux policy is customizable based on least access required. openct
53 policy is extremely flexible and has several booleans that allow you to
54 manipulate the policy and run openct with the tightest access possible.
55
56
57
58 If you want to allow all domains to execute in fips_mode, you must turn
59 on the fips_mode boolean. Enabled by default.
60
61 setsebool -P fips_mode 1
62
63
64
66 The SELinux process type openct_t can manage files labeled with the
67 following file types. The paths listed are the default paths for these
68 file types. Note the processes UID still need to have DAC permissions.
69
70 cluster_conf_t
71
72 /etc/cluster(/.*)?
73
74 cluster_var_lib_t
75
76 /var/lib/pcsd(/.*)?
77 /var/lib/cluster(/.*)?
78 /var/lib/openais(/.*)?
79 /var/lib/pengine(/.*)?
80 /var/lib/corosync(/.*)?
81 /usr/lib/heartbeat(/.*)?
82 /var/lib/heartbeat(/.*)?
83 /var/lib/pacemaker(/.*)?
84
85 cluster_var_run_t
86
87 /var/run/crm(/.*)?
88 /var/run/cman_.*
89 /var/run/rsctmp(/.*)?
90 /var/run/aisexec.*
91 /var/run/heartbeat(/.*)?
92 /var/run/pcsd-ruby.socket
93 /var/run/corosync-qnetd(/.*)?
94 /var/run/corosync-qdevice(/.*)?
95 /var/run/corosync.pid
96 /var/run/cpglockd.pid
97 /var/run/rgmanager.pid
98 /var/run/cluster/rgmanager.sk
99
100 openct_var_run_t
101
102 /var/run/openct(/.*)?
103
104 root_t
105
106 /sysroot/ostree/deploy/.*-atomic/deploy(/.*)?
107 /
108 /initrd
109
110 usbfs_t
111
112
113
115 SELinux requires files to have an extended attribute to define the file
116 type.
117
118 You can see the context of a file using the -Z option to ls
119
120 Policy governs the access confined processes have to these files.
121 SELinux openct policy is very flexible allowing users to setup their
122 openct processes in as secure a method as possible.
123
124 STANDARD FILE CONTEXT
125
126 SELinux defines the file context types for the openct, if you wanted to
127 store files with these types in a diffent paths, you need to execute
128 the semanage command to specify alternate labeling and then use re‐
129 storecon to put the labels on disk.
130
131 semanage fcontext -a -t openct_var_run_t '/srv/myopenct_content(/.*)?'
132 restorecon -R -v /srv/myopenct_content
133
134 Note: SELinux often uses regular expressions to specify labels that
135 match multiple files.
136
137 The following file types are defined for openct:
138
139
140
141 openct_exec_t
142
143 - Set files with the openct_exec_t type, if you want to transition an
144 executable to the openct_t domain.
145
146
147 Paths:
148 /usr/sbin/ifdhandler, /usr/sbin/openct-control
149
150
151 openct_initrc_exec_t
152
153 - Set files with the openct_initrc_exec_t type, if you want to transi‐
154 tion an executable to the openct_initrc_t domain.
155
156
157
158 openct_var_run_t
159
160 - Set files with the openct_var_run_t type, if you want to store the
161 openct files under the /run or /var/run directory.
162
163
164
165 Note: File context can be temporarily modified with the chcon command.
166 If you want to permanently change the file context you need to use the
167 semanage fcontext command. This will modify the SELinux labeling data‐
168 base. You will need to use restorecon to apply the labels.
169
170
172 semanage fcontext can also be used to manipulate default file context
173 mappings.
174
175 semanage permissive can also be used to manipulate whether or not a
176 process type is permissive.
177
178 semanage module can also be used to enable/disable/install/remove pol‐
179 icy modules.
180
181 semanage boolean can also be used to manipulate the booleans
182
183
184 system-config-selinux is a GUI tool available to customize SELinux pol‐
185 icy settings.
186
187
189 This manual page was auto-generated using sepolicy manpage .
190
191
193 selinux(8), openct(8), semanage(8), restorecon(8), chcon(1), sepol‐
194 icy(8), setsebool(8)
195
196
197
198openct 22-05-27 openct_selinux(8)