Bug 1234298
Summary: | [SELinux] RHEL-6.7: Common BZ to track all the new gluster AVC's seen against the latest selinux-policy build | ||
---|---|---|---|
Product: | Red Hat Enterprise Linux 6 | Reporter: | Prasanth <pprakash> |
Component: | selinux-policy | Assignee: | Miroslav Grepl <mgrepl> |
Status: | CLOSED DUPLICATE | QA Contact: | Milos Malik <mmalik> |
Severity: | high | Docs Contact: | |
Priority: | unspecified | ||
Version: | 6.7 | CC: | amainkar, annair, asrivast, dwalsh, kparthas, lvrabec, mgrepl, mmalik, nlevinki, nsathyan, plautrba, pprakash, pvrabec, rcyriac, rhinduja, ssekidde, vagarwal, vbellur |
Target Milestone: | rc | ||
Target Release: | --- | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2015-06-23 17:29:10 UTC | Type: | Bug |
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: | |||
Bug Blocks: | 1212796 |
Description
Prasanth
2015-06-22 10:11:59 UTC
Seen the following AVC's with build: selinux-policy-3.7.19-278.el6.noarch [root@georep2 ~]# grep "AVC" /var/log/audit/audit.log type=AVC msg=audit(1434635056.640:10081): avc: denied { connectto } for pid=5031 comm="status" path=002F636F6D2F7562756E74752F75707374617274 scontext=unconfined_u:system_r:glusterd_t:s0 tcontext=system_u:system_r:init_t:s0 tclass=unix_stream_socket type=AVC msg=audit(1434717550.573:11374): avc: denied { connectto } for pid=16673 comm="status" path=002F636F6D2F7562756E74752F75707374617274 scontext=unconfined_u:system_r:glusterd_t:s0 tcontext=system_u:system_r:init_t:s0 tclass=unix_stream_socket type=AVC msg=audit(1434837661.846:13065): avc: denied { getattr } for pid=9591 comm="ps" path="/dev/tty2" dev=devtmpfs ino=5644 scontext=system_u:system_r:logrotate_t:s0-s0:c0.c1023 tcontext=system_u:object_r:tty_device_t:s0 tclass=chr_file [root@georep2 ~]# [root@georep2 ~]# cat /var/log/audit/audit.log|audit2allow #============= glusterd_t ============== allow glusterd_t init_t:unix_stream_socket connectto; #============= logrotate_t ============== allow logrotate_t tty_device_t:chr_file getattr; [root@georep2 ~]# rpm -qa | grep selinux libselinux-2.0.94-5.8.el6.x86_64 libselinux-utils-2.0.94-5.8.el6.x86_64 libselinux-python-2.0.94-5.8.el6.x86_64 selinux-policy-targeted-3.7.19-278.el6.noarch selinux-policy-3.7.19-278.el6.noarch [root@georep2 ~]# These were with the basic geo-rep cases, but I dont think they are specific to geo-replication as the command shows denied for "ps" and "status" for unix socket Not sure why type=AVC msg=audit(1434837661.846:13065): avc: denied { getattr } for pid=9591 comm="ps" path="/dev/tty2" dev=devtmpfs ino=5644 scontext=system_u:system_r:logrotate_t:s0-s0:c0.c1023 tcontext=system_u:object_r:tty_device_t:s0 tclass=chr_file is needed. What are you getting in permssive mode? (In reply to Miroslav Grepl from comment #2) > Not sure why > > type=AVC msg=audit(1434837661.846:13065): avc: denied { getattr } for > pid=9591 comm="ps" path="/dev/tty2" dev=devtmpfs ino=5644 > scontext=system_u:system_r:logrotate_t:s0-s0:c0.c1023 > tcontext=system_u:object_r:tty_device_t:s0 tclass=chr_file > > is needed. What are you getting in permssive mode? These AVC's were from permissive mode. I have cleared my systems for other tests and now I am on enforcing mode. Found following logrotate configs: * /etc/logrotate.d/glusterfs * /etc/logrotate.d/glusterfs-georep The AVC related to ps is most likely triggered by the second one. I would say it's a leaked file descriptor, because the /etc/logrotate.d/glusterfs-georep file does not handle stderr: ... { sharedscripts rotate 52 missingok compress delaycompress notifempty postrotate for pid in `ps -aef | grep glusterfs | egrep "\-\-aux-gfid-mount" | awk '{print $2}'`; do /usr/bin/kill -HUP $pid > /dev/null 2>&1 || true done endscript } Milos, Which file descriptor is being leaked here? /etc/logrotate.d/glusterfs also redirects stderr to /dev/null. Why is that not triggering the same AVC errors? Does this needs a fix in glusterfs? *** This bug has been marked as a duplicate of bug 1230371 *** |