From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D97CE138330 for ; Mon, 3 Oct 2016 06:21:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B3BD21C08C; Mon, 3 Oct 2016 06:20:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 112F521C08C for ; Mon, 3 Oct 2016 06:20:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DC51A340E0B for ; Mon, 3 Oct 2016 06:20:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E187224B7 for ; Mon, 3 Oct 2016 06:20:52 +0000 (UTC) From: "Jason Zaman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" Message-ID: <1475475213.abdacce1d5c0894bc44af2822d436ce670e68935.perfinion@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/networkmanager.if X-VCS-Directories: policy/modules/contrib/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: abdacce1d5c0894bc44af2822d436ce670e68935 X-VCS-Branch: master Date: Mon, 3 Oct 2016 06:20:52 +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: a97ecde1-ddd0-4826-8ed9-1ca39a6d2d52 X-Archives-Hash: 8879ccfa0e8eb002c21782cbbda1e71c Message-ID: <20161003062052.LRZGxPylbyjUAUkZfil6uStgIlqeAdZA2oJ365y2P7U@z> commit: abdacce1d5c0894bc44af2822d436ce670e68935 Author: Naftuli Tzvi Kay gmail com> AuthorDate: Tue Sep 27 20:40:57 2016 +0000 Commit: Jason Zaman gentoo org> CommitDate: Mon Oct 3 06:13:33 2016 +0000 URL: https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=abdacce1 Fix NetworkManager Read Pid Files Macro Bug found in pull #26 - permissions aren't granted for searching the NetworkManager_var_run_t directory, only to reading its files. policy/modules/contrib/networkmanager.if | 1 + 1 file changed, 1 insertion(+) diff --git a/policy/modules/contrib/networkmanager.if b/policy/modules/contrib/networkmanager.if index 152dc57..10688d2 100644 --- a/policy/modules/contrib/networkmanager.if +++ b/policy/modules/contrib/networkmanager.if @@ -247,6 +247,7 @@ interface(`networkmanager_read_pid_files',` ') files_search_pids($1) + allow $1 NetworkManager_var_run_t:dir search_dir_perms; allow $1 NetworkManager_var_run_t:file read_file_perms; ')