1afs_selinux(8) SELinux Policy afs afs_selinux(8)
2
3
4
6 afs_selinux - Security Enhanced Linux Policy for the afs processes
7
9 Security-Enhanced Linux secures the afs processes via flexible manda‐
10 tory access control.
11
12 The afs processes execute with the afs_t SELinux type. You can check if
13 you have these processes running by executing the ps command with the
14 -Z qualifier.
15
16 For example:
17
18 ps -eZ | grep afs_t
19
20
21
23 The afs_t SELinux type can be entered via the afs_exec_t file type.
24
25 The default entrypoint paths for the afs_t domain are the following:
26
27 /usr/sbin/afsd, /usr/vice/etc/afsd
28
30 SELinux defines process types (domains) for each process running on the
31 system
32
33 You can see the context of a process using the -Z option to ps
34
35 Policy governs the access confined processes have to files. SELinux
36 afs policy is very flexible allowing users to setup their afs processes
37 in as secure a method as possible.
38
39 The following process types are defined for afs:
40
41 afs_t, afs_bosserver_t, afs_fsserver_t, afs_kaserver_t, afs_ptserver_t, afs_vlserver_t
42
43 Note: semanage permissive -a afs_t can be used to make the process type
44 afs_t permissive. SELinux does not deny access to permissive process
45 types, but the AVC (SELinux denials) messages are still generated.
46
47
49 SELinux policy is customizable based on least access required. afs
50 policy is extremely flexible and has several booleans that allow you to
51 manipulate the policy and run afs with the tightest access possible.
52
53
54
55 If you want to allow all domains to execute in fips_mode, you must turn
56 on the fips_mode boolean. Enabled by default.
57
58 setsebool -P fips_mode 1
59
60
61
62 If you want to allow confined applications to use nscd shared memory,
63 you must turn on the nscd_use_shm boolean. Disabled by default.
64
65 setsebool -P nscd_use_shm 1
66
67
68
70 SELinux defines port types to represent TCP and UDP ports.
71
72 You can see the types associated with a port by using the following
73 command:
74
75 semanage port -l
76
77
78 Policy governs the access confined processes have to these ports.
79 SELinux afs policy is very flexible allowing users to setup their afs
80 processes in as secure a method as possible.
81
82 The following port types are defined for afs:
83
84
85 afs3_callback_port_t
86
87
88
89 Default Defined Ports:
90 tcp 7001
91 udp 7001
92
93
94 afs_bos_port_t
95
96
97
98 Default Defined Ports:
99 udp 7007
100
101
102 afs_fs_port_t
103
104
105
106 Default Defined Ports:
107 tcp 2040
108 udp 7000,7005
109
110
111 afs_ka_port_t
112
113
114
115 Default Defined Ports:
116 udp 7004
117
118
119 afs_pt_port_t
120
121
122
123 Default Defined Ports:
124 tcp 7002
125 udp 7002
126
127
128 afs_vl_port_t
129
130
131
132 Default Defined Ports:
133 udp 7003
134
136 The SELinux process type afs_t can manage files labeled with the fol‐
137 lowing file types. The paths listed are the default paths for these
138 file types. Note the processes UID still need to have DAC permissions.
139
140 afs_cache_t
141
142 /var/cache/(open)?afs(/.*)?
143 /usr/vice/cache(/.*)?
144
145 cluster_conf_t
146
147 /etc/cluster(/.*)?
148
149 cluster_var_lib_t
150
151 /var/lib/pcsd(/.*)?
152 /var/lib/cluster(/.*)?
153 /var/lib/openais(/.*)?
154 /var/lib/pengine(/.*)?
155 /var/lib/corosync(/.*)?
156 /usr/lib/heartbeat(/.*)?
157 /var/lib/heartbeat(/.*)?
158 /var/lib/pacemaker(/.*)?
159
160 cluster_var_run_t
161
162 /var/run/crm(/.*)?
163 /var/run/cman_.*
164 /var/run/rsctmp(/.*)?
165 /var/run/aisexec.*
166 /var/run/heartbeat(/.*)?
167 /var/run/corosync-qnetd(/.*)?
168 /var/run/corosync-qdevice(/.*)?
169 /var/run/corosync.pid
170 /var/run/cpglockd.pid
171 /var/run/rgmanager.pid
172 /var/run/cluster/rgmanager.sk
173
174 etc_runtime_t
175
176 /[^/]+
177 /etc/mtab.*
178 /etc/blkid(/.*)?
179 /etc/nologin.*
180 /etc/.fstab.hal..+
181 /halt
182 /fastboot
183 /poweroff
184 /.autofsck
185 /etc/cmtab
186 /forcefsck
187 /.suspended
188 /fsckoptions
189 /.autorelabel
190 /etc/.updated
191 /var/.updated
192 /etc/killpower
193 /etc/nohotplug
194 /etc/securetty
195 /etc/ioctl.save
196 /etc/fstab.REVOKE
197 /etc/network/ifstate
198 /etc/sysconfig/hwconf
199 /etc/ptal/ptal-printd-like
200 /etc/xorg.conf.d/00-system-setup-keyboard.conf
201 /etc/X11/xorg.conf.d/00-system-setup-keyboard.conf
202
203 root_t
204
205 /sysroot/ostree/deploy/.*-atomic/deploy(/.*)?
206 /
207 /initrd
208
209 unlabeled_t
210
211
212
214 SELinux requires files to have an extended attribute to define the file
215 type.
216
217 You can see the context of a file using the -Z option to ls
218
219 Policy governs the access confined processes have to these files.
220 SELinux afs policy is very flexible allowing users to setup their afs
221 processes in as secure a method as possible.
222
223 STANDARD FILE CONTEXT
224
225 SELinux defines the file context types for the afs, if you wanted to
226 store files with these types in a diffent paths, you need to execute
227 the semanage command to sepecify alternate labeling and then use
228 restorecon to put the labels on disk.
229
230 semanage fcontext -a -t afs_vl_db_t '/srv/myafs_content(/.*)?'
231 restorecon -R -v /srv/myafs_content
232
233 Note: SELinux often uses regular expressions to specify labels that
234 match multiple files.
235
236 The following file types are defined for afs:
237
238
239
240 afs_bosserver_exec_t
241
242 - Set files with the afs_bosserver_exec_t type, if you want to transi‐
243 tion an executable to the afs_bosserver_t domain.
244
245
246 Paths:
247 /usr/sbin/bosserver, /usr/afs/bin/bosserver
248
249
250 afs_cache_t
251
252 - Set files with the afs_cache_t type, if you want to store the files
253 under the /var/cache directory.
254
255
256 Paths:
257 /var/cache/(open)?afs(/.*)?, /usr/vice/cache(/.*)?
258
259
260 afs_config_t
261
262 - Set files with the afs_config_t type, if you want to treat the files
263 as afs configuration data, usually stored under the /etc directory.
264
265
266 Paths:
267 /etc/(open)?afs(/.*)?, /usr/afs/etc(/.*)?, /usr/afs/local(/.*)?
268
269
270 afs_dbdir_t
271
272 - Set files with the afs_dbdir_t type, if you want to treat the files
273 as afs dbdir data.
274
275
276
277 afs_exec_t
278
279 - Set files with the afs_exec_t type, if you want to transition an exe‐
280 cutable to the afs_t domain.
281
282
283 Paths:
284 /usr/sbin/afsd, /usr/vice/etc/afsd
285
286
287 afs_files_t
288
289 - Set files with the afs_files_t type, if you want to treat the files
290 as afs content.
291
292
293 Paths:
294 /usr/afs(/.*)?, /vicepa, /vicepb, /vicepc
295
296
297 afs_fsserver_exec_t
298
299 - Set files with the afs_fsserver_exec_t type, if you want to transi‐
300 tion an executable to the afs_fsserver_t domain.
301
302
303 Paths:
304 /usr/afs/bin/salvager, /usr/afs/bin/volserver, /usr/afs/bin/dasal‐
305 vager, /usr/afs/bin/fileserver, /usr/afs/bin/davolserver,
306 /usr/afs/bin/dafileserver, /usr/afs/bin/salvageserver,
307 /usr/libexec/openafs/salvager, /usr/libexec/openafs/volserver,
308 /usr/libexec/openafs/fileserver
309
310
311 afs_initrc_exec_t
312
313 - Set files with the afs_initrc_exec_t type, if you want to transition
314 an executable to the afs_initrc_t domain.
315
316
317 Paths:
318 /etc/rc.d/init.d/(open)?afs, /etc/rc.d/init.d/openafs-client
319
320
321 afs_ka_db_t
322
323 - Set files with the afs_ka_db_t type, if you want to treat the files
324 as afs ka database content.
325
326
327
328 afs_kaserver_exec_t
329
330 - Set files with the afs_kaserver_exec_t type, if you want to transi‐
331 tion an executable to the afs_kaserver_t domain.
332
333
334 Paths:
335 /usr/afs/bin/kaserver, /usr/libexec/openafs/kaserver
336
337
338 afs_logfile_t
339
340 - Set files with the afs_logfile_t type, if you want to treat the files
341 as afs logfile data.
342
343
344
345 afs_pt_db_t
346
347 - Set files with the afs_pt_db_t type, if you want to treat the files
348 as afs pt database content.
349
350
351
352 afs_ptserver_exec_t
353
354 - Set files with the afs_ptserver_exec_t type, if you want to transi‐
355 tion an executable to the afs_ptserver_t domain.
356
357
358 Paths:
359 /usr/afs/bin/ptserver, /usr/libexec/openafs/ptserver
360
361
362 afs_vl_db_t
363
364 - Set files with the afs_vl_db_t type, if you want to treat the files
365 as afs vl database content.
366
367
368
369 afs_vlserver_exec_t
370
371 - Set files with the afs_vlserver_exec_t type, if you want to transi‐
372 tion an executable to the afs_vlserver_t domain.
373
374
375 Paths:
376 /usr/afs/bin/vlserver, /usr/libexec/openafs/vlserver
377
378
379 Note: File context can be temporarily modified with the chcon command.
380 If you want to permanently change the file context you need to use the
381 semanage fcontext command. This will modify the SELinux labeling data‐
382 base. You will need to use restorecon to apply the labels.
383
384
386 semanage fcontext can also be used to manipulate default file context
387 mappings.
388
389 semanage permissive can also be used to manipulate whether or not a
390 process type is permissive.
391
392 semanage module can also be used to enable/disable/install/remove pol‐
393 icy modules.
394
395 semanage port can also be used to manipulate the port definitions
396
397 semanage boolean can also be used to manipulate the booleans
398
399
400 system-config-selinux is a GUI tool available to customize SELinux pol‐
401 icy settings.
402
403
405 This manual page was auto-generated using sepolicy manpage .
406
407
409 selinux(8), afs(8), semanage(8), restorecon(8), chcon(1), sepolicy(8),
410 setsebool(8), afs_bosserver_selinux(8), afs_bosserver_selinux(8),
411 afs_fsserver_selinux(8), afs_fsserver_selinux(8),
412 afs_kaserver_selinux(8), afs_kaserver_selinux(8),
413 afs_ptserver_selinux(8), afs_ptserver_selinux(8),
414 afs_vlserver_selinux(8), afs_vlserver_selinux(8)
415
416
417
418afs 19-12-02 afs_selinux(8)