Bug 538503
| Summary: | MLS selinux-policy: setkey executed from initrc_t from if{up,down}-ipsec fails to set policies | ||
|---|---|---|---|
| Product: | Red Hat Enterprise Linux 5 | Reporter: | RHEL Program Management <pm-rhel> |
| Component: | selinux-policy | Assignee: | Daniel Walsh <dwalsh> |
| Status: | CLOSED ERRATA | QA Contact: | BaseOS QE Security Team <qe-baseos-security> |
| Severity: | medium | Docs Contact: | |
| Priority: | urgent | ||
| Version: | 5.3 | CC: | dwalsh, ebenes, herrold, jplans, mgrepl, notting, ohudlick, pm-eus, shaines, syeghiay, thoger, tmraz |
| Target Milestone: | rc | Keywords: | Regression, ZStream |
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2010-01-07 09:02:19 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | 515687 | ||
| Bug Blocks: | |||
|
Description
RHEL Program Management
2009-11-18 17:44:19 UTC
Fixed in selinux-policy-2.4.6-255.el5_4.2.noarch Following denial still blocks the expected functionality, and is shown only
after
rebuild with "semodule -DB":
#============= setkey_t ==============
allow setkey_t sysadm_tmp_t:file { read getattr };
After adding custom policy module as follows make it work again:
# cat my.te
policy_module(mypol,1.0.0)
require{
type setkey_t;
type sysadm_tmp_t;
}
allow setkey_t sysadm_tmp_t:file { read getattr };
# make -f /usr/share/selinux/devel/Makefile
Everything seems to work if I use this:
# cat my.if my.te -n
1 interface(`userdom_read_sysadm_tmp_files',`
2 gen_require(`
3 type sysadm_tmp_t;
4 ')
5 allow $1 sysadm_tmp_t:file { read getattr };
6 ')
7
8 policy_module(mysetkey,1.0.0)
9
10 gen_require(`
11 type setkey_t;
12 ')
13
14 userdom_read_sysadm_tmp_files(setkey_t);
Fixed in selinux-policy-2.4.6-255.el5_4.3.noarch An advisory has been issued which should help the problem described in this bug report. This report is therefore being closed with a resolution of ERRATA. For more information on therefore solution and/or where to find the updated files, please follow the link below. You may reopen this bug report if the solution does not work for you. http://rhn.redhat.com/errata/RHBA-2010-0013.html |