1groupadd_selinux(8) SELinux Policy groupadd groupadd_selinux(8)
2
3
4
6 groupadd_selinux - Security Enhanced Linux Policy for the groupadd pro‐
7 cesses
8
10 Security-Enhanced Linux secures the groupadd processes via flexible
11 mandatory access control.
12
13 The groupadd processes execute with the groupadd_t SELinux type. You
14 can check if you have these processes running by executing the ps com‐
15 mand with the -Z qualifier.
16
17 For example:
18
19 ps -eZ | grep groupadd_t
20
21
22
24 The groupadd_t SELinux type can be entered via the groupadd_exec_t file
25 type.
26
27 The default entrypoint paths for the groupadd_t domain are the follow‐
28 ing:
29
30 /usr/bin/gpasswd, /usr/sbin/gpasswd, /usr/sbin/groupdel,
31 /usr/sbin/groupmod, /usr/sbin/groupadd
32
34 SELinux defines process types (domains) for each process running on the
35 system
36
37 You can see the context of a process using the -Z option to ps
38
39 Policy governs the access confined processes have to files. SELinux
40 groupadd policy is very flexible allowing users to setup their groupadd
41 processes in as secure a method as possible.
42
43 The following process types are defined for groupadd:
44
45 groupadd_t
46
47 Note: semanage permissive -a groupadd_t can be used to make the process
48 type groupadd_t permissive. SELinux does not deny access to permissive
49 process types, but the AVC (SELinux denials) messages are still gener‐
50 ated.
51
52
54 SELinux policy is customizable based on least access required.
55 groupadd policy is extremely flexible and has several booleans that
56 allow you to manipulate the policy and run groupadd with the tightest
57 access possible.
58
59
60
61 If you want to allow all daemons the ability to read/write terminals,
62 you must turn on the allow_daemons_use_tty boolean. Disabled by
63 default.
64
65 setsebool -P allow_daemons_use_tty 1
66
67
68
69 If you want to allow all domains to use other domains file descriptors,
70 you must turn on the allow_domain_fd_use boolean. Enabled by default.
71
72 setsebool -P allow_domain_fd_use 1
73
74
75
76 If you want to allow confined applications to run with kerberos, you
77 must turn on the allow_kerberos boolean. Enabled by default.
78
79 setsebool -P allow_kerberos 1
80
81
82
83 If you want to allow sysadm to debug or ptrace all processes, you must
84 turn on the allow_ptrace boolean. Disabled by default.
85
86 setsebool -P allow_ptrace 1
87
88
89
90 If you want to allow system to run with NIS, you must turn on the
91 allow_ypbind boolean. Disabled by default.
92
93 setsebool -P allow_ypbind 1
94
95
96
97 If you want to allow all domains to have the kernel load modules, you
98 must turn on the domain_kernel_load_modules boolean. Disabled by
99 default.
100
101 setsebool -P domain_kernel_load_modules 1
102
103
104
105 If you want to allow all domains to execute in fips_mode, you must turn
106 on the fips_mode boolean. Enabled by default.
107
108 setsebool -P fips_mode 1
109
110
111
112 If you want to enable reading of urandom for all domains, you must turn
113 on the global_ssp boolean. Disabled by default.
114
115 setsebool -P global_ssp 1
116
117
118
119 If you want to allow confined applications to use nscd shared memory,
120 you must turn on the nscd_use_shm boolean. Enabled by default.
121
122 setsebool -P nscd_use_shm 1
123
124
125
126 If you want to allow samba to act as the domain controller, add users,
127 groups and change passwords, you must turn on the samba_domain_con‐
128 troller boolean. Disabled by default.
129
130 setsebool -P samba_domain_controller 1
131
132
133
135 The SELinux process type groupadd_t can manage files labeled with the
136 following file types. The paths listed are the default paths for these
137 file types. Note the processes UID still need to have DAC permissions.
138
139 etc_t
140
141 /etc/.*
142 /var/db/.*.db
143 /usr/etc(/.*)?
144 /var/ftp/etc(/.*)?
145 /usr/local/etc(/.*)?
146 /var/lib/openshift/.limits.d(/.*)?
147 /var/lib/openshift/.openshift-proxy.d(/.*)?
148 /var/lib/openshift/.stickshift-proxy.d(/.*)?
149 /var/lib/stickshift/.limits.d(/.*)?
150 /var/lib/stickshift/.stickshift-proxy.d(/.*)?
151 /var/named/chroot/etc(/.*)?
152 /etc/ipsec.d/examples(/.*)?
153 /var/spool/postfix/etc(/.*)?
154 /etc
155 /etc/cups/client.conf
156
157 faillog_t
158
159 /var/log/btmp.*
160 /var/log/faillog.*
161 /var/log/tallylog.*
162 /var/run/faillock(/.*)?
163
164 initrc_tmp_t
165
166
167 lastlog_t
168
169 /var/log/lastlog.*
170
171 mnt_t
172
173 /mnt(/[^/]*)
174 /mnt(/[^/]*)?
175 /rhev(/[^/]*)?
176 /media(/[^/]*)
177 /media(/[^/]*)?
178 /etc/rhgb(/.*)?
179 /media/.hal-.*
180 /net
181 /afs
182 /rhev
183 /misc
184
185 pcscd_var_run_t
186
187 /var/run/pcscd.events(/.*)?
188 /var/run/pcscd.pid
189 /var/run/pcscd.pub
190 /var/run/pcscd.comm
191
192 security_t
193
194
195 shadow_t
196
197 /etc/shadow.*
198 /etc/gshadow.*
199 /var/db/shadow.*
200 /etc/passwd.adjunct.*
201 /etc/.pwd.lock
202 /etc/group.lock
203 /etc/passwd.lock
204
205 tmp_t
206
207 /tmp
208 /usr/tmp
209 /var/tmp
210 /tmp-inst
211 /var/tmp-inst
212 /var/tmp/vi.recover
213
214
216 SELinux requires files to have an extended attribute to define the file
217 type.
218
219 You can see the context of a file using the -Z option to ls
220
221 Policy governs the access confined processes have to these files.
222 SELinux groupadd policy is very flexible allowing users to setup their
223 groupadd processes in as secure a method as possible.
224
225 The following file types are defined for groupadd:
226
227
228
229 groupadd_exec_t
230
231 - Set files with the groupadd_exec_t type, if you want to transition an
232 executable to the groupadd_t domain.
233
234
235 Paths:
236 /usr/bin/gpasswd, /usr/sbin/gpasswd, /usr/sbin/groupdel,
237 /usr/sbin/groupmod, /usr/sbin/groupadd
238
239
240 Note: File context can be temporarily modified with the chcon command.
241 If you want to permanently change the file context you need to use the
242 semanage fcontext command. This will modify the SELinux labeling data‐
243 base. You will need to use restorecon to apply the labels.
244
245
247 semanage fcontext can also be used to manipulate default file context
248 mappings.
249
250 semanage permissive can also be used to manipulate whether or not a
251 process type is permissive.
252
253 semanage module can also be used to enable/disable/install/remove pol‐
254 icy modules.
255
256 semanage boolean can also be used to manipulate the booleans
257
258
259 system-config-selinux is a GUI tool available to customize SELinux pol‐
260 icy settings.
261
262
264 This manual page was auto-generated using sepolicy manpage .
265
266
268 selinux(8), groupadd(8), semanage(8), restorecon(8), chcon(1) , setse‐
269 bool(8)
270
271
272
273groupadd 15-06-03 groupadd_selinux(8)