Bug 551616
| Summary: | SELinux is preventing /sbin/ifconfig "read" access on /var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SrvrPowerCtrl/Plugin.pm. | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | gharris999 |
| Component: | selinux-policy | Assignee: | Daniel Walsh <dwalsh> |
| Status: | CLOSED CANTFIX | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | low | ||
| Version: | 12 | CC: | dwalsh, mgrepl |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | i386 | ||
| OS: | Linux | ||
| Whiteboard: | setroubleshoot_trace_hash:2724c110c8c5129961bd0c213c792a3b3d45028d0ffc7063d611b65c107db028 | ||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2010-01-04 14:13:04 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: | |||
|
Description
gharris999
2009-12-31 17:38:41 UTC
Um...why in the world would ifconfig want to "read" a perl module? It doesn't. This is a leaked file descriptor. Looks like a bug in squezeboxserver. Why is /var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SrvrPowerCtrl/Plugin.pm labeled mysqld_db_t? ls -lZ /var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SrvrPowerCtrl/Plugin.pm squeezeboxserver needs to close its file descriptors on exec fcntl(fd, F_SETFD, FD_CLOEXEC) You can allow these leaks for now by executing # grep ifconfig /var/log/audit/audit.log | audit2allow myifconfig # semodule -i myifconfig.pp |