forked from pool/selinux-policy
b66c2b8ce6
- Update to version 20221019. Refreshed: * distro_suse_to_distro_redhat.patch * fix_apache.patch * fix_chronyd.patch * fix_cron.patch * fix_init.patch * fix_kernel_sysctl.patch * fix_networkmanager.patch * fix_rpm.patch * fix_sysnetwork.patch * fix_systemd.patch * fix_systemd_watch.patch * fix_unconfined.patch * fix_unconfineduser.patch * fix_unprivuser.patch * fix_xserver.patch - Dropped fix_cockpit.patch as this is now packaged with cockpit itself - Remove the ipa module, freeip ships their own module - Added fix_alsa.patch to allow reading of config files in home directories - Extended fix_networkmanager.patch and fix_postfix.patch to account for SUSE systems - Added dontaudit_interface_kmod_tmpfs.patch to prevent AVCs when startproc queries the running processes - Updated fix_snapper.patch to allow snapper to talk to rpm via dbus OBS-URL: https://build.opensuse.org/request/show/1035580 OBS-URL: https://build.opensuse.org/package/show/security:SELinux/selinux-policy?expand=0&rev=155
52 lines
3.0 KiB
Diff
52 lines
3.0 KiB
Diff
Index: fedora-policy-20221019/policy/modules/contrib/rpm.fc
|
|
===================================================================
|
|
--- fedora-policy-20221019.orig/policy/modules/contrib/rpm.fc
|
|
+++ fedora-policy-20221019/policy/modules/contrib/rpm.fc
|
|
@@ -18,6 +18,10 @@
|
|
/usr/bin/repoquery -- gen_context(system_u:object_r:rpm_exec_t,s0)
|
|
/usr/bin/zif -- gen_context(system_u:object_r:rpm_exec_t,s0)
|
|
|
|
+/usr/sbin/zypp-refresh -- gen_context(system_u:object_r:rpm_exec_t,s0)
|
|
+/usr/bin/zypper -- gen_context(system_u:object_r:rpm_exec_t,s0)
|
|
+
|
|
+
|
|
/usr/libexec/packagekitd -- gen_context(system_u:object_r:rpm_exec_t,s0)
|
|
/usr/libexec/yumDBUSBackend.py -- gen_context(system_u:object_r:rpm_exec_t,s0)
|
|
/usr/libexec/pegasus/pycmpiLMI_Software-cimprovagt -- gen_context(system_u:object_r:rpm_exec_t,s0)
|
|
@@ -56,6 +60,8 @@ ifdef(`distro_redhat', `
|
|
/var/cache/yum(/.*)? gen_context(system_u:object_r:rpm_var_cache_t,s0)
|
|
/var/cache/dnf(/.*)? gen_context(system_u:object_r:rpm_var_cache_t,s0)
|
|
|
|
+/var/cache/zypp(/.*)? gen_context(system_u:object_r:rpm_var_cache_t,s0)
|
|
+
|
|
/var/lib/alternatives(/.*)? gen_context(system_u:object_r:rpm_var_lib_t,s0)
|
|
/var/lib/PackageKit(/.*)? gen_context(system_u:object_r:rpm_var_lib_t,s0)
|
|
/var/lib/rpm(/.*)? gen_context(system_u:object_r:rpm_var_lib_t,s0)
|
|
Index: fedora-policy-20221019/policy/modules/contrib/rpm.if
|
|
===================================================================
|
|
--- fedora-policy-20221019.orig/policy/modules/contrib/rpm.if
|
|
+++ fedora-policy-20221019/policy/modules/contrib/rpm.if
|
|
@@ -515,8 +515,10 @@ interface(`rpm_named_filetrans',`
|
|
logging_log_named_filetrans($1, rpm_log_t, file, "yum.log")
|
|
logging_log_named_filetrans($1, rpm_log_t, file, "hawkey.log")
|
|
logging_log_named_filetrans($1, rpm_log_t, file, "up2date")
|
|
+ logging_log_named_filetrans($1, rpm_log_t, file, "zypper.log")
|
|
files_var_filetrans($1, rpm_var_cache_t, dir, "dnf")
|
|
files_var_filetrans($1, rpm_var_cache_t, dir, "yum")
|
|
+ files_var_filetrans($1, rpm_var_cache_t, dir, "zypp")
|
|
files_var_lib_filetrans($1, rpm_var_lib_t, dir, "dnf")
|
|
files_var_lib_filetrans($1, rpm_var_lib_t, dir, "yum")
|
|
files_var_lib_filetrans($1, rpm_var_lib_t, dir, "rpm")
|
|
Index: fedora-policy-20221019/policy/modules/kernel/files.fc
|
|
===================================================================
|
|
--- fedora-policy-20221019.orig/policy/modules/kernel/files.fc
|
|
+++ fedora-policy-20221019/policy/modules/kernel/files.fc
|
|
@@ -67,6 +67,7 @@ ifdef(`distro_redhat',`
|
|
/etc/sysconfig/ipvsadm.* -- gen_context(system_u:object_r:system_conf_t,s0)
|
|
/etc/sysconfig/system-config-firewall.* -- gen_context(system_u:object_r:system_conf_t,s0)
|
|
/etc/yum\.repos\.d(/.*)? gen_context(system_u:object_r:system_conf_t,s0)
|
|
+/etc/zypp(/.*)? gen_context(system_u:object_r:system_conf_t,s0)
|
|
/etc/ostree/remotes.d(/.*)? gen_context(system_u:object_r:system_conf_t,s0)
|
|
|
|
/ostree/repo(/.*)? gen_context(system_u:object_r:system_conf_t,s0)
|