1svc_run_selinux(8) SELinux Policy svc_run svc_run_selinux(8)
2
3
4
6 svc_run_selinux - Security Enhanced Linux Policy for the svc_run pro‐
7 cesses
8
10 Security-Enhanced Linux secures the svc_run processes via flexible
11 mandatory access control.
12
13 The svc_run processes execute with the svc_run_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 svc_run_t
20
21
22
24 The svc_run_t SELinux type can be entered via the svc_run_exec_t file
25 type.
26
27 The default entrypoint paths for the svc_run_t domain are the follow‐
28 ing:
29
30 /var/service/.*/run.*, /var/service/.*/log/run, /var/qmail/super‐
31 vise/.*/run, /var/qmail/supervise/.*/log/run, /usr/bin/envdir,
32 /usr/bin/fghack, /usr/bin/setlock, /var/axfrdns/run, /var/tinydns/run,
33 /usr/bin/pgrphack, /var/dnscache/run, /usr/bin/envuidgid, /usr/bin/se‐
34 tuidgid, /usr/bin/softlimit, /var/axfrdns/log/run,
35 /var/tinydns/log/run, /var/dnscache/log/run
36
38 SELinux defines process types (domains) for each process running on the
39 system
40
41 You can see the context of a process using the -Z option to ps
42
43 Policy governs the access confined processes have to files. SELinux
44 svc_run policy is very flexible allowing users to setup their svc_run
45 processes in as secure a method as possible.
46
47 The following process types are defined for svc_run:
48
49 svc_run_t
50
51 Note: semanage permissive -a svc_run_t can be used to make the process
52 type svc_run_t permissive. SELinux does not deny access to permissive
53 process types, but the AVC (SELinux denials) messages are still gener‐
54 ated.
55
56
58 SELinux policy is customizable based on least access required. svc_run
59 policy is extremely flexible and has several booleans that allow you to
60 manipulate the policy and run svc_run with the tightest access possi‐
61 ble.
62
63
64
65 If you want to allow all domains to execute in fips_mode, you must turn
66 on the fips_mode boolean. Enabled by default.
67
68 setsebool -P fips_mode 1
69
70
71
73 SELinux requires files to have an extended attribute to define the file
74 type.
75
76 You can see the context of a file using the -Z option to ls
77
78 Policy governs the access confined processes have to these files.
79 SELinux svc_run policy is very flexible allowing users to setup their
80 svc_run processes in as secure a method as possible.
81
82 STANDARD FILE CONTEXT
83
84 SELinux defines the file context types for the svc_run, if you wanted
85 to store files with these types in a different paths, you need to exe‐
86 cute the semanage command to specify alternate labeling and then use
87 restorecon to put the labels on disk.
88
89 semanage fcontext -a -t svc_run_exec_t '/srv/svc_run/content(/.*)?'
90 restorecon -R -v /srv/mysvc_run_content
91
92 Note: SELinux often uses regular expressions to specify labels that
93 match multiple files.
94
95 The following file types are defined for svc_run:
96
97
98
99 svc_run_exec_t
100
101 - Set files with the svc_run_exec_t type, if you want to transition an
102 executable to the svc_run_t domain.
103
104
105 Paths:
106 /var/service/.*/run.*, /var/service/.*/log/run, /var/qmail/super‐
107 vise/.*/run, /var/qmail/supervise/.*/log/run, /usr/bin/envdir,
108 /usr/bin/fghack, /usr/bin/setlock, /var/axfrdns/run,
109 /var/tinydns/run, /usr/bin/pgrphack, /var/dnscache/run,
110 /usr/bin/envuidgid, /usr/bin/setuidgid, /usr/bin/softlimit,
111 /var/axfrdns/log/run, /var/tinydns/log/run, /var/dnscache/log/run
112
113
114 Note: File context can be temporarily modified with the chcon command.
115 If you want to permanently change the file context you need to use the
116 semanage fcontext command. This will modify the SELinux labeling data‐
117 base. You will need to use restorecon to apply the labels.
118
119
121 semanage fcontext can also be used to manipulate default file context
122 mappings.
123
124 semanage permissive can also be used to manipulate whether or not a
125 process type is permissive.
126
127 semanage module can also be used to enable/disable/install/remove pol‐
128 icy modules.
129
130 semanage boolean can also be used to manipulate the booleans
131
132
133 system-config-selinux is a GUI tool available to customize SELinux pol‐
134 icy settings.
135
136
138 This manual page was auto-generated using sepolicy manpage .
139
140
142 selinux(8), svc_run(8), semanage(8), restorecon(8), chcon(1), sepol‐
143 icy(8), setsebool(8)
144
145
146
147svc_run 23-10-20 svc_run_selinux(8)