forked from osbuild/osbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathosbuild_selinux.8
147 lines (104 loc) · 4.86 KB
/
osbuild_selinux.8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
.TH "osbuild_selinux" "8" "20-06-09" "osbuild" "SELinux Policy osbuild"
.SH "NAME"
osbuild_selinux \- Security Enhanced Linux Policy for the osbuild processes
.SH "DESCRIPTION"
Security-Enhanced Linux secures the osbuild processes via flexible mandatory access control.
The osbuild processes execute with the osbuild_t SELinux type. You can check if you have these processes running by executing the \fBps\fP command with the \fB\-Z\fP qualifier.
For example:
.B ps -eZ | grep osbuild_t
.SH "ENTRYPOINTS"
The osbuild_t SELinux type can be entered via the \fBosbuild_exec_t\fP file type.
The default entrypoint paths for the osbuild_t domain are the following:
/usr/lib/osbuild/stages/*, /usr/lib/osbuild/sources/*, /usr/lib/osbuild/assemblers/*, /usr/bin/osbuild
.SH PROCESS TYPES
SELinux defines process types (domains) for each process running on the system
.PP
You can see the context of a process using the \fB\-Z\fP option to \fBps\bP
.PP
Policy governs the access confined processes have to files.
SELinux osbuild policy is very flexible allowing users to setup their osbuild processes in as secure a method as possible.
.PP
The following process types are defined for osbuild:
.EX
.B osbuild_t
.EE
.PP
Note:
.B semanage permissive -a osbuild_t
can be used to make the process type osbuild_t permissive. SELinux does not deny access to permissive process types, but the AVC (SELinux denials) messages are still generated.
.SH BOOLEANS
SELinux policy is customizable based on least access required. osbuild policy is extremely flexible and has several booleans that allow you to manipulate the policy and run osbuild with the tightest access possible.
.PP
If you want to deny user domains applications to map a memory region as both executable and writable, this is dangerous and the executable should be reported in bugzilla, you must turn on the deny_execmem boolean. Disabled by default.
.EX
.B setsebool -P deny_execmem 1
.EE
.PP
If you want to control the ability to mmap a low area of the address space, as configured by /proc/sys/vm/mmap_min_addr, you must turn on the mmap_low_allowed boolean. Disabled by default.
.EX
.B setsebool -P mmap_low_allowed 1
.EE
.PP
If you want to disable kernel module loading, you must turn on the secure_mode_insmod boolean. Disabled by default.
.EX
.B setsebool -P secure_mode_insmod 1
.EE
.PP
If you want to allow unconfined executables to make their heap memory executable. Doing this is a really bad idea. Probably indicates a badly coded executable, but could indicate an attack. This executable should be reported in bugzilla, you must turn on the selinuxuser_execheap boolean. Disabled by default.
.EX
.B setsebool -P selinuxuser_execheap 1
.EE
.PP
If you want to allow unconfined executables to make their stack executable. This should never, ever be necessary. Probably indicates a badly coded executable, but could indicate an attack. This executable should be reported in bugzilla, you must turn on the selinuxuser_execstack boolean. Enabled by default.
.EX
.B setsebool -P selinuxuser_execstack 1
.EE
.SH "MANAGED FILES"
The SELinux process type osbuild_t can manage files labeled with the following file types. The paths listed are the default paths for these file types. Note the processes UID still need to have DAC permissions.
.br
.B file_type
all files on the system
.br
.SH FILE CONTEXTS
SELinux requires files to have an extended attribute to define the file type.
.PP
You can see the context of a file using the \fB\-Z\fP option to \fBls\bP
.PP
Policy governs the access confined processes have to these files.
SELinux osbuild policy is very flexible allowing users to setup their osbuild processes in as secure a method as possible.
.PP
.I The following file types are defined for osbuild:
.EX
.PP
.B osbuild_exec_t
.EE
- Set files with the osbuild_exec_t type, if you want to transition an executable to the osbuild_t domain.
.br
.TP 5
Paths:
/usr/lib/osbuild/stages/*, /usr/lib/osbuild/sources/*, /usr/lib/osbuild/assemblers/*, /usr/bin/osbuild
.PP
Note: File context can be temporarily modified with the chcon command. If you want to permanently change the file context you need to use the
.B semanage fcontext
command. This will modify the SELinux labeling database. You will need to use
.B restorecon
to apply the labels.
.SH "COMMANDS"
.B semanage fcontext
can also be used to manipulate default file context mappings.
.PP
.B semanage permissive
can also be used to manipulate whether or not a process type is permissive.
.PP
.B semanage module
can also be used to enable/disable/install/remove policy modules.
.B semanage boolean
can also be used to manipulate the booleans
.PP
.B system-config-selinux
is a GUI tool available to customize SELinux policy settings.
.SH AUTHOR
This manual page was auto-generated using
.B "sepolicy manpage".
.SH "SEE ALSO"
selinux(8), osbuild(8), semanage(8), restorecon(8), chcon(1), sepolicy(8), setsebool(8)