From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 35BD21381F3 for ; Wed, 25 Sep 2013 09:49:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D352E0D61; Wed, 25 Sep 2013 09:49:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 428F8E0D5C for ; Wed, 25 Sep 2013 09:49:40 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4A07733EDE4 for ; Wed, 25 Sep 2013 09:49:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 5B176E5468 for ; Wed, 25 Sep 2013 09:49:37 +0000 (UTC) From: "Sven Vermeulen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Vermeulen" Message-ID: <1380102197.776cae9bb9dd4d03be66d4108cab99c030937e48.swift@gentoo> Subject: [gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/contrib/ X-VCS-Repository: proj/hardened-refpolicy X-VCS-Files: policy/modules/contrib/dbus.te X-VCS-Directories: policy/modules/contrib/ X-VCS-Committer: swift X-VCS-Committer-Name: Sven Vermeulen X-VCS-Revision: 776cae9bb9dd4d03be66d4108cab99c030937e48 X-VCS-Branch: master Date: Wed, 25 Sep 2013 09:49:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5ccf15be-a18a-4bcd-a718-c2cb29e1e01d X-Archives-Hash: 1798c9f81726b30e0518075ed54b6a5b commit: 776cae9bb9dd4d03be66d4108cab99c030937e48 Author: Dominick Grift gmail com> AuthorDate: Mon Sep 23 14:37:00 2013 +0000 Commit: Sven Vermeulen gentoo org> CommitDate: Wed Sep 25 09:43:17 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/hardened-refpolicy.git;a=commit;h=776cae9b dbus: allow system, and session bus clients to answer to dbus unconfined domains Signed-off-by: Dominick Grift gmail.com> --- policy/modules/contrib/dbus.te | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/policy/modules/contrib/dbus.te b/policy/modules/contrib/dbus.te index dda231b..b9838d1 100644 --- a/policy/modules/contrib/dbus.te +++ b/policy/modules/contrib/dbus.te @@ -256,5 +256,5 @@ optional_policy(` # Unconfined access to this module # -allow dbusd_unconfined { dbusd_session_bus_client dbusd_system_bus_client }:dbus send_msg; -allow dbusd_unconfined { system_dbusd_t session_bus_type }:dbus all_dbus_perms; +allow dbusd_unconfined { system_dbusd_t session_bus_type dbusd_session_bus_client dbusd_system_bus_client }:dbus all_dbus_perms; +allow { dbusd_session_bus_client dbusd_system_bus_client } dbusd_unconfined:dbus send_msg;