On 03/03/2010 11:24 AM, Caleb Case wrote:
On Wed, Mar 3, 2010 at 11:01 AM, Christopher J. PeBenito
<cpebenito@xxxxxxxxxx> wrote:
On Wed, 2010-03-03 at 10:08 -0500, Daniel J Walsh wrote:
On 03/03/2010 05:20 AM, Dominick Grift wrote:
On 03/03/2010 12:07 AM, Russell Coker wrote:
<snip>
How should we solve this?
I Wrote a blog with my view on this issue here:
http://selinux-mac.blogspot.com/2010/02/about-apachecontenttemplate.html
I am also interested in other views on this.
Dominic your example would not work since it would not have rules to
handle apache content is not present. What happens to you executable.
I am not sure this would work.
optional_policy(`
apache_cgi_domain(backuppc_admin_t, backuppc_admin_exec_t)
',`
gen_require(`
type bin_t;
')
typealias bin_t alias backuppc_admin_exec_t;
')
That won't work because you can't put require blocks in the else block
of an optional.
Thought I'd mention that the proposed CIL would alleviate this problem
since it allows you to put FC statements in the policy (and in
conditional statements). For example:
# if the squid block exists (i.e., the squid module is in the policy)
IF (? /(BLOCK squid)) {
# call the apache block with the squid type
CALL /(BLOCK apache_content_template) (TYPE squid)
# label the squid cache manager
LABEL (PATH:FILE (PATH:REGEX "/usr/lib/squid/cachemgr\.cgi")
(PATH:FILETYPE "--")) {
USER system
ROLE object
TYPE squid_script_exec
RANGE (LEVEL s0)
}
}
The syntax is probably going to be changed at some point, but this
does illustrate the general concept that labeling is part of the
policy language proper and can be used in conditionals.
Caleb
Well since you brought it up, I believe there should be an alias in here.
So if this policy is installed you have squid_script_exec_t otherwise
alias all files to bin_t. So the system can work if the policy is
enabled or disabled.
All file types defined in policy should have an alias for enabled and
disabled policy.
Even if they default to default_t.
--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@xxxxxxxxxxxxx with
the words "unsubscribe selinux" without quotes as the message.